Skip to content

Commit

Permalink
Ensure unique artifact names in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jolla authored Dec 28, 2024
1 parent f92b7bf commit ae9e54a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-archive-debian-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
distro: [bullseye,bookworm]
arch: [arm64]

steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -33,7 +33,8 @@ jobs:
- name: Archive artifacts and upload to GitHub
uses: actions/upload-artifact@v4
with:
name: wlanpi-bluetooth-{{ matrix.distro }}-${{ matrix.arch }}
# Adding a unique identifier using the GitHub run ID
name: wlanpi-bluetooth-${{ matrix.distro }}-${{ matrix.arch }}-${{ github.run_id }}
path: ${{ steps.build-debian-package.outputs.deb-package }}

slack-workflow-status:
Expand Down

0 comments on commit ae9e54a

Please sign in to comment.