Skip to content

Commit 28b0b21

Browse files
committed
hack hack hack
Signed-off-by: Brian Harring <ferringb@gmail.com>
1 parent d38f116 commit 28b0b21

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/actions/checkout/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ runs:
2222
if: inputs.artifact-id
2323
uses: actions/download-artifact@v5
2424
with:
25-
artifact-id: ${{ inputs.artifact-id }}
25+
artifact-ids: ${{ inputs.artifact-id }}
2626
- name: Unpack it
2727
shell: bash
2828
if: inputs.artifact-id || false
2929
run: |
30-
tar -C ${{ inputs.path || '.' }} -p1 -zxf "${{ steps.download.outputs.download-path }}"
30+
unzip -e "${{ steps.download.outputs.download-path }}"
31+
tar -C ${{ inputs.path || '.' }} -p1 -zxf *.tar.gz
32+
rm *.tar.gz

0 commit comments

Comments
 (0)