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 a5ad0cb commit 72ca89bCopy full SHA for 72ca89b
.github/workflows/release_zip.yml
@@ -1,6 +1,6 @@
1
# This is a basic workflow to help you get started with Actions
2
3
-name: CI
+name: Package for release
4
5
# Controls when the workflow will run
6
on:
@@ -21,9 +21,9 @@ jobs:
21
22
- name: Zip up folder
23
run: |
24
- mkdir -p /artifact
25
- zip -r /artifact/skelerealms.zip ${{ github.workspace }}/addons/skelerealms
+ mkdir -p ${{ github.workspace }}/artifact
+ zip -r ${{ github.workspace }}/artifact/skelerealms.zip ${{ github.workspace }}/addons/skelerealms
26
- uses: actions/upload-artifact@v3
27
with:
28
name: skelerealms
29
- path: /artifact/skelerealms.zip
+ path: ${{ github.workspace }}/artifact/skelerealms.zip
0 commit comments