Skip to content

Commit

Permalink
CI: Use more relative paths for intermediate tars
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jun 6, 2024
1 parent c60f0e7 commit 2665ebb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/example-export-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,13 @@ jobs:
# This step helps to preserve file permissions.
- name: Tar up the example project
shell: bash
working-directory: "${{ steps.export-project-step.outputs.export-path }}"
run: |
tar -cvf gdsion-example.tar "${{ steps.export-project-step.outputs.export-path }}"
tar -cvf gdsion-example.tar .
- name: Upload the example project
uses: actions/upload-artifact@v4
with:
name: example-project-${{ matrix.platform }}-${{ matrix.arch }}
path: gdsion-example.tar
path: "${{ steps.export-project-step.outputs.export-path }}/gdsion-example.tar"
retention-days: 14

0 comments on commit 2665ebb

Please sign in to comment.