Skip to content

Commit

Permalink
CI: Distinguish artifact names by GHC version
Browse files Browse the repository at this point in the history
Fixes #1383.
  • Loading branch information
RyanGlScott committed Jul 15, 2022
1 parent 69f07cc commit e75ec89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,14 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: ${{ env.NAME }}
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
with:
name: ${{ env.NAME }}-with-solvers
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 }}
Expand All @@ -218,7 +218,7 @@ jobs:
- uses: actions/upload-artifact@v2
if: runner.os == 'Windows'
with:
name: ${{ env.NAME }}
name: ${{ env.NAME }} (GHC ${{ matrix.ghc-version }})
path: "cryptol.msi*"
if-no-files-found: error
retention-days: ${{ needs.config.outputs.retention-days }}
Expand Down

0 comments on commit e75ec89

Please sign in to comment.