We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54900a7 commit 4e240cdCopy full SHA for 4e240cd
1 file changed
.github/workflows/build.yml
@@ -65,17 +65,18 @@ jobs:
65
- name: Publish
66
run: dotnet publish ${{ env.project_path }} -c Release
67
68
- - name: Zip artifact
+ - name: Install zip
69
uses: montudor/action-zip@v1
70
- with:
71
- args: zip -qq -r SkyWriter.zip *
72
- working-directory: "${{ env.project_path }}${{ env.publish_path }}"
+
+ - name: Zip artifact
+ run: zip -qq -r SkyWriter.zip *
73
+ working-directory: "${{ env.project_path }}${{ env.publish_path }}"
74
75
- name: Upload artifact
76
uses: actions/upload-artifact@v1
77
with:
78
name: ${{ env.artifact_name }}
- path: SkyWriter.zip
79
+ path: "${{ env.project_path }}${{ env.publish_path }}SkyWriter.zip"
80
81
release:
82
name: Draft Release
0 commit comments