Skip to content

Commit

Permalink
FIX: Downgrade upload/download artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
rcjackson committed Sep 26, 2024
1 parent 47126fe commit 15e39b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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@v4
- uses: actions/upload-artifact@v3
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
- uses: actions/download-artifact@v3
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
- uses: actions/download-artifact@v3
with:
name: releases
path: dist
Expand Down

0 comments on commit 15e39b7

Please sign in to comment.