Skip to content

Commit

Permalink
fix: Do not use concurrency group as suffix for package builds
Browse files Browse the repository at this point in the history
  • Loading branch information
cicdguy committed Jul 18, 2024
1 parent bacfde2 commit 3e0c717
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,8 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ${{ github.event.repository.name }}/${{ inputs.package-subdirectory }}/${{ env.PKGBUILD }}
name: ${{ env.PKGBUILD }}-${{ inputs.concurrency-group }}
name: ${{ env.PKGBUILD }}
overwrite: true

- name: Upload logs artifact 🗞️
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -894,7 +895,7 @@ jobs:
- name: Download artifact ⏬
uses: actions/download-artifact@v4
with:
name: ${{ env.PKGBUILD }}-${{ inputs.concurrency-group }}
name: ${{ env.PKGBUILD }}

- name: Check if release exists
id: check-if-release-exists
Expand Down

0 comments on commit 3e0c717

Please sign in to comment.