We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219f74a commit e836db9Copy full SHA for e836db9
.github/workflows/docker-workflow.yml
@@ -116,12 +116,11 @@ jobs:
116
- name: Download all artifacts
117
uses: actions/download-artifact@v4
118
with:
119
- # No name specified, downloads all artifacts from the workflow run
+ # Specify a pattern to download only the relevant ZIPs
120
+ pattern: sharp-layer-*
121
path: dist # Download to 'dist' directory
- # Optional: Pattern matching if you have other artifacts
122
- # pattern: sharp-layer-*
123
- # merge-multiple: true # Merges artifacts if they have the same name (not needed here)
124
-
+ # merge-multiple: true # Still not strictly needed as names are unique, but doesn't hurt
+
125
- name: List downloaded files
126
run: ls -R dist
127
0 commit comments