Skip to content

Commit

Permalink
Remove unused invoke tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
oz123 committed Sep 6, 2022
1 parent b300d73 commit b1a753b
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,11 @@ jobs:

- name: Install latest tools for build
run: |
python -m pip install build twine .
python -m pip install build twine invoke .
- name: Build wheels
run: |
python -m build
- name: Upload to PyPI via Twine
# to upload to test pypi, pass --repository-url https://test.pypi.org/legacy/ and use secrets.TEST_PYPI_TOKEN
run: |
twine upload --verbose -u '__token__' -p '${{ secrets.PYPI_TOKEN }}' dist/*
- name: Pre-bump
run: |
git config --local user.name 'Github Action'
git config --local user.email [email protected]
inv bump-version -t dev
git commit -am "pre-bump"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master

0 comments on commit b1a753b

Please sign in to comment.