We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295b0e9 commit 9c2058fCopy full SHA for 9c2058f
.github/workflows/python-uv-build-zip.yml
@@ -86,14 +86,13 @@ jobs:
86
- name: Zip build folder
87
run: |
88
pushd ${{ inputs.build-path }}
89
- zip -q -r ${{ inputs.artifact-name }}.zip ${{ inputs.build-globs }}
90
- cp ${{ inputs.artifact-name }}.zip "$(dirs +1)"
+ zip -q -r ${{ runner.temp }}/${{ inputs.artifact-name }}.zip ${{ inputs.build-globs }}
91
92
- name: Upload artifact
93
uses: actions/upload-artifact@v4
94
with:
95
name: ${{ inputs.artifact-name }}
96
- path: ${{ inputs.working-directory }}/${{ inputs.artifact-name }}.zip
+ path: ${{ runner.temp }}/${{ inputs.artifact-name }}.zip
97
if-no-files-found: error
98
99
- name: Post-run
0 commit comments