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 05b42ab commit dd03c9fCopy full SHA for dd03c9f
.github/workflows/windows.yml
@@ -64,7 +64,7 @@ jobs:
64
artifact=${artifact,,}
65
# Add the ARTIFACT name as GitHub environment variable.
66
echo "ARTIFACT=$artifact" >> $GITHUB_ENV
67
- mv dist/ $artifact
+ mv dist/* $artifact/
68
- name: Upload Artifact
69
uses: actions/upload-artifact@v3
70
with:
@@ -74,7 +74,7 @@ jobs:
74
if: github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name == 'push')
75
shell: bash
76
run: |
77
- 7z a -tzip ${{ env.ARTIFACT }}.zip ${{ env.ARTIFACT }}
+ 7z a -tzip ${{ env.ARTIFACT }}.zip ${{ env.ARTIFACT }}/*
78
if [ $GITHUB_REF_TYPE == tag ]; then
79
echo "TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV
80
else
0 commit comments