Skip to content

Commit

Permalink
fix: update artifact name to download
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 committed Jan 5, 2025
1 parent c5e94e5 commit 8caf4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Fetch Build Outputs
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
pattern: ${{ env.IMAGE_NAME }}-*.txt
pattern: ${{ env.IMAGE_NAME }}-*

Check warning on line 223 in .github/workflows/build.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/build.yml#L223

Using a single metavariable as a pattern drastically slows down the rule performance because it will match every expression in a file.

Check warning on line 223 in .github/workflows/build.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/build.yml#L223

Using a single metavariable as a pattern drastically slows down the rule performance because it will match every expression in a file.
merge-multiple: true
path: /tmp/artifacts

Expand Down

0 comments on commit 8caf4fc

Please sign in to comment.