Skip to content

Commit 928feaf

Browse files
committed
ci: Fix extract-symbol-graphs action's cwd handling
1 parent d6680a0 commit 928feaf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/extract-symbol-graphs/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ runs:
7373
- name: Compress symbol graphs
7474
uses: a7ul/tar-action@v1.1.0
7575
with:
76+
cwd: ${{ inputs.working-directory }}
7677
command: c
77-
files: ./${{ inputs.working-directory }}/${{ inputs.target }}-symbol-graphs
78-
outPath: ${{ inputs.target }}-symbol-graphs.tar.gz
78+
files: ./${{ inputs.target }}-symbol-graphs
79+
outPath: ../${{ inputs.target }}-symbol-graphs.tar.gz
7980

8081
- name: Upload symbol graphs
8182
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)