Skip to content

Commit

Permalink
Update release_zip.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashScreen authored Aug 23, 2023
1 parent a5ad0cb commit 72ca89b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_zip.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: Package for release

# Controls when the workflow will run
on:
Expand All @@ -21,9 +21,9 @@ jobs:

- name: Zip up folder
run: |
mkdir -p /artifact
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
- uses: actions/upload-artifact@v3
with:
name: skelerealms
path: /artifact/skelerealms.zip
path: ${{ github.workspace }}/artifact/skelerealms.zip

0 comments on commit 72ca89b

Please sign in to comment.