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