Skip to content

Commit

Permalink
CD pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheR1D committed Aug 10, 2024
1 parent b087d73 commit 558d3db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m hatchling build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: python-package-distributions
path: dist/
Expand All @@ -45,7 +45,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -64,7 +64,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -73,7 +73,7 @@ jobs:
echo "SGPT_VERSION=$(find dist -type f -name '*.tar.gz' | grep -oP '\d+.\d+.\d+')" >> $GITHUB_ENV
echo "Release version $SGPT_VERSION"
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v1.2.3
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down

0 comments on commit 558d3db

Please sign in to comment.