Skip to content

Commit

Permalink
Bump the release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Sep 10, 2023
1 parent 611a40e commit 6c827aa
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3

- name: Install dependencies
run: pip install build
Expand All @@ -25,12 +25,12 @@ jobs:
run: python -m build

- name: Upload source distribution as an action artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: sdist
path: dist/furo-*.tar.gz
- name: Upload wheel distribution as an action artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheel
path: dist/furo-*-py3-none-any.whl
Expand All @@ -43,7 +43,5 @@ jobs:
- name: Upload to TestPyPI
uses: pypa/gh-action-pypi-publish@v1.4.1
with:
user: __token__
password: ${{ secrets.TESTPYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
verbose: true

0 comments on commit 6c827aa

Please sign in to comment.