Skip to content

Commit

Permalink
fix: Fix CI release pipeline (#67)
Browse files Browse the repository at this point in the history
- use consistent versions
- remove duplicate
  • Loading branch information
fxgst authored Nov 19, 2024
1 parent 81331fd commit b575120
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,14 @@ jobs:

- if: matrix.os == 'ubuntu-latest'
name: Upload wheel file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pocket_ic_${{ github.sha }}.whl
path: ${{ steps.release-build.outputs.dist }}/*.whl

- if: matrix.os == 'ubuntu-latest'
name: Upload sources
uses: actions/upload-artifact@v3
with:
name: pocket_ic_${{ github.sha }}.tar.gz
path: ${{ steps.release-build.outputs.dist }}/*.tar.gz

- if: matrix.os == 'ubuntu-latest'
name: Upload sources
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pocket_ic_${{ github.sha }}.tar.gz
path: ${{ steps.release-build.outputs.dist }}/*.tar.gz
Expand All @@ -62,11 +55,11 @@ jobs:
permissions: write-all

steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: pocket_ic_${{ github.sha }}.whl

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: pocket_ic_${{ github.sha }}.tar.gz

Expand Down

0 comments on commit b575120

Please sign in to comment.