We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d86b4de commit fcee122Copy full SHA for fcee122
.github/workflows/ci.yml
@@ -43,14 +43,13 @@ jobs:
43
--exclude='./.git' \
44
--exclude='./coverage' \
45
--exclude='./**/*.log' \
46
- --exclude='./workspace.tar.gz' \
47
- -czf workspace.tar.gz .
+ -czf ${{ runner.temp }}/workspace.tar.gz .
48
49
- name: Upload workspace
50
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
51
with:
52
name: workspace-${{ matrix.node-version }}
53
- path: workspace.tar.gz
+ path: ${{ runner.temp }}/workspace.tar.gz
54
55
build-docs:
56
needs: build
0 commit comments