Skip to content

Commit

Permalink
fix: Update semver
Browse files Browse the repository at this point in the history
  • Loading branch information
argysamo committed May 18, 2022
1 parent 0c3a674 commit 4478a85
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/upload-to-pip.yml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_TOKEN }}

- uses: actions/setup-python@v2
with:
python-version: 3.9

- name: "Installs dependencies"
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools wheel python-semantic-release
python -m pip install --upgrade pip
python -m pip install setuptools wheel python-semantic-release
- name: "Builds and uploads to PyPI"
run: |
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
semantic-release publish
env:
PYPI_USERNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit 4478a85

Please sign in to comment.