From 72ca89bfc56d07d14e3014b786733d77897bfedd Mon Sep 17 00:00:00 2001 From: Slashscreen Date: Wed, 23 Aug 2023 14:30:34 -0700 Subject: [PATCH] Update release_zip.yml --- .github/workflows/release_zip.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_zip.yml b/.github/workflows/release_zip.yml index db5a097..4a15a9c 100644 --- a/.github/workflows/release_zip.yml +++ b/.github/workflows/release_zip.yml @@ -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: @@ -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