Skip to content

Commit 72ca89b

Browse files
authored
Update release_zip.yml
1 parent a5ad0cb commit 72ca89b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release_zip.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a basic workflow to help you get started with Actions
22

3-
name: CI
3+
name: Package for release
44

55
# Controls when the workflow will run
66
on:
@@ -21,9 +21,9 @@ jobs:
2121

2222
- name: Zip up folder
2323
run: |
24-
mkdir -p /artifact
25-
zip -r /artifact/skelerealms.zip ${{ github.workspace }}/addons/skelerealms
24+
mkdir -p ${{ github.workspace }}/artifact
25+
zip -r ${{ github.workspace }}/artifact/skelerealms.zip ${{ github.workspace }}/addons/skelerealms
2626
- uses: actions/upload-artifact@v3
2727
with:
2828
name: skelerealms
29-
path: /artifact/skelerealms.zip
29+
path: ${{ github.workspace }}/artifact/skelerealms.zip

0 commit comments

Comments
 (0)