Skip to content

Commit

Permalink
Include OS target in the release asset name
Browse files Browse the repository at this point in the history
  • Loading branch information
L7R7 committed Jun 13, 2024
1 parent 88ed2a3 commit 3e7a3a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

build_artifact:
needs: [create_release]
name: ${{ matrix.os }}/GHC 9.6.5/${{ github.ref }}
name: ${{ matrix.os }}/${{ matrix.target }}/${{ github.ref }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -63,7 +63,6 @@ jobs:

- name: Setup Haskell
uses: haskell-actions/setup@v2.7.3
id: setup-haskell-cabal
with:
ghc-version: 9.6.5
enable-stack: true
Expand Down Expand Up @@ -119,5 +118,5 @@ jobs:
with:
upload_url: ${{ env.upload_url }}
asset_path: ${{ env.BINARY_PATH }}
asset_name: gitlab-helper-${{ steps.tag.outputs.tag }}-${{ runner.os }}${{ env.EXT }}
asset_name: gitlab-helper-${{ steps.tag.outputs.tag }}-${{ runner.os }}-${{ runner.os.target }}${{ env.EXT }}
asset_content_type: application/octet-stream

0 comments on commit 3e7a3a3

Please sign in to comment.