Skip to content

Commit

Permalink
FIX: Github actions to release
Browse files Browse the repository at this point in the history
  • Loading branch information
rcjackson committed Sep 26, 2024
1 parent 1c1f6c5 commit 47126fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
else
echo "✅ Looks good"
fi
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: releases
path: dist
Expand All @@ -49,7 +49,7 @@ jobs:
name: Install Python
with:
python-version: "3.x"
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: releases
path: dist
Expand All @@ -62,7 +62,7 @@ jobs:
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: releases
path: dist
Expand All @@ -71,4 +71,4 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
verbose: true
verbose: true

0 comments on commit 47126fe

Please sign in to comment.