Skip to content

Commit

Permalink
fixed upload
Browse files Browse the repository at this point in the history
fixed deps installation in github actions
  • Loading branch information
andgineer committed Apr 17, 2023
1 parent 4c3b223 commit 29fd07d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
echo ${{ runner.os }} ${{ matrix.os }}
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: pre-commit
if: runner.os == 'Linux' # we do not need static code analizes on each OS, but we want to repeat it on Linux only for each Python version in matrix
run: |
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ uninstall:

test:
bash ./scripts/test.sh


upload:
bash ./scripts/upload.sh
File renamed without changes.
2 changes: 1 addition & 1 deletion upload.sh → scripts/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# The package will be uploaded automatically when you create new release on github
rm -rf build/*
rm -rf dist/*
./build.sh
scripts/build.sh
python3 -m twine upload --verbose dist/*

0 comments on commit 29fd07d

Please sign in to comment.