Skip to content

Commit

Permalink
Use matrix.os, not runner.os, to disambiguate binary artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed Feb 14, 2024
1 parent 4067c3a commit 8ee771a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,13 @@ jobs:
uses: actions/upload-artifact@v2
with:
path: dist/bin
name: ${{ runner.os }}-dist-bin
name: ${{ matrix.os }}-dist-bin

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

- uses: actions/upload-artifact@v2
if: runner.os == 'Windows'
Expand Down Expand Up @@ -331,12 +331,12 @@ jobs:

- uses: actions/download-artifact@v2
with:
name: "${{ runner.os }}-dist-bin"
name: "${{ matrix.os }}-dist-bin"
path: dist/bin

- uses: actions/download-artifact@v2
with:
name: "${{ runner.os }}-bin"
name: "${{ matrix.os }}-bin"
path: bin

- shell: bash
Expand Down

0 comments on commit 8ee771a

Please sign in to comment.