Skip to content

Commit

Permalink
chore: fix upload zip generations
Browse files Browse the repository at this point in the history
Parent paths should not be included in the zipped artifact file
  • Loading branch information
gfellerph committed Nov 21, 2023
1 parent d25692e commit 02991ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/artifact-upload/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ runs:
- name: Zip artifact folder
shell: bash
run: zip artifacts.zip ${{ inputs.folder }} -r
run: cd ${{ inputs.folder }} && zip artifacts.zip . -r

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ inputs.name }}
path: artifacts.zip
path: ${{ inputs.folder }}/artifacts.zip

0 comments on commit 02991ea

Please sign in to comment.