Skip to content

Commit

Permalink
adjust path used to invoke tar to avoid absolute paths in artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
zero9178 committed May 2, 2024
1 parent c28facb commit c189856
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ jobs:
find . -name "*.o" -type f -delete
- name: Tar build directory
working-directory: ${{github.workspace}}
run: |
tar -cvf quidditch-compiler-build.tar ${{github.workspace}}/quidditch-compiler-build
tar -cvf quidditch-compiler-build.tar quidditch-compiler-build
- name: Upload iree-compile
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -119,7 +120,7 @@ jobs:

- name: Untar iree-compile
run: |
tar -xf quidditch-compiler-build.tar
tar -xf quidditch-compiler-build.tar .
- name: Configure build
run: |
Expand Down

0 comments on commit c189856

Please sign in to comment.