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 fa3373c commit 16005bdCopy full SHA for 16005bd
.github/workflows/webpack.yml
@@ -35,11 +35,11 @@ jobs:
35
run: npm run build
36
37
- name: Zip
38
- run: zip -r "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY#*/}.zip" .
+ run: git archive -o "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY}.zip" ${GITHUB_SHA}
39
shell: bash
40
41
- name: Upload zip
42
uses: actions/upload-artifact@v4
43
with:
44
name: ${{ github.event.repository.name }}
45
- path: "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY#*/}.zip"
+ path: ${{ github.workspace }}${{ github.repository }}.zip
0 commit comments