Skip to content

Commit

Permalink
chore: simplify name of bundle artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Mar 23, 2024
1 parent e338f18 commit 05e45c3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ steps.current_tag.outputs.tag }} Bundle (${{ runner.os }} ${{ matrix.settings.architecture }})
name: ${{ steps.current_tag.outputs.tag }} Bundle (${{ matrix.settings.system }}-${{ matrix.settings.architecture }})
path: ./bundle-${{ steps.current_tag.outputs.tag }}-${{ matrix.settings.system }}.tar.gz
retention-days: 7

Expand All @@ -106,8 +106,7 @@ jobs:
fail-fast: false
matrix:
settings:
- name: macOS
platform: macos
- platform: macos
system: mac
architecture: aarch64
format: dmg
Expand All @@ -116,7 +115,7 @@ jobs:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: ${{ needs.bundle.outputs.tag }} Bundle (${{ matrix.settings.name }} ${{ matrix.settings.architecture }})
name: ${{ needs.bundle.outputs.tag }} Bundle (${{ matrix.settings.system }}-${{ matrix.settings.architecture }})

- name: Extract build artifacts
run: tar -xzvf ./bundle-${{ needs.bundle.outputs.tag }}-${{ matrix.settings.system }}.tar.gz
Expand Down

0 comments on commit 05e45c3

Please sign in to comment.