Skip to content

Commit

Permalink
CI: Bump upload-artifacts actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Sep 3, 2024
1 parent 0ea0e2d commit 6d2fa0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,33 +215,33 @@ jobs:
.github/ci.sh sign ${NAME}.tar.gz
.github/ci.sh sign ${NAME}-with-solvers.tar.gz
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }} (GHC ${{ matrix.ghc-version }})
path: "${{ env.NAME }}.tar.gz*"
if-no-files-found: error
retention-days: ${{ needs.config.outputs.retention-days }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }}-with-solvers (GHC ${{ matrix.ghc-version }})
path: "${{ env.NAME }}-with-solvers.tar.gz*"
if-no-files-found: error
retention-days: ${{ needs.config.outputs.retention-days }}

- if: matrix.ghc-version == '9.4.8' && matrix.run-tests
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: dist/bin
name: ${{ matrix.os }}-dist-bin

- if: matrix.ghc-version == '9.4.8' && matrix.run-tests
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: bin
name: ${{ matrix.os }}-bin

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: ${{ env.NAME }} (GHC ${{ matrix.ghc-version }})
Expand Down

0 comments on commit 6d2fa0e

Please sign in to comment.