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 16005bd commit d8ceb4cCopy full SHA for d8ceb4c
.github/workflows/webpack.yml
@@ -35,11 +35,11 @@ jobs:
35
run: npm run build
36
37
- name: Zip
38
- run: git archive -o "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY}.zip" ${GITHUB_SHA}
+ run: git archive -o "${GITHUB_REPOSITORY}.zip" --prefix="${GITHUB_REPOSITORY}/" ${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.repository }}.zip
0 commit comments