We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d38f116 commit 28b0b21Copy full SHA for 28b0b21
.github/actions/checkout/action.yml
@@ -22,9 +22,11 @@ runs:
22
if: inputs.artifact-id
23
uses: actions/download-artifact@v5
24
with:
25
- artifact-id: ${{ inputs.artifact-id }}
+ artifact-ids: ${{ inputs.artifact-id }}
26
- name: Unpack it
27
shell: bash
28
if: inputs.artifact-id || false
29
run: |
30
- tar -C ${{ inputs.path || '.' }} -p1 -zxf "${{ steps.download.outputs.download-path }}"
+ unzip -e "${{ steps.download.outputs.download-path }}"
31
+ tar -C ${{ inputs.path || '.' }} -p1 -zxf *.tar.gz
32
+ rm *.tar.gz
0 commit comments