From 45253f674f97a2b21ae3a01cb24b291a15b532fc Mon Sep 17 00:00:00 2001 From: DC23 Date: Wed, 27 Nov 2024 22:58:57 +1100 Subject: [PATCH] renaming zip to basicfantasyrpg.zip --- .github/workflows/release-creation.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-creation.yml b/.github/workflows/release-creation.yml index ecf87d7..6f50b94 100644 --- a/.github/workflows/release-creation.yml +++ b/.github/workflows/release-creation.yml @@ -25,7 +25,7 @@ jobs: download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/basicfantasyrpg.zip # Create a zip file with all files required by the module to add to the release - - run: zip -r ./${{github.event.release.tag_name}}.zip system.json template.json LICENSE lang/ module/ styles/ templates/ + - run: zip -r ./basicfantasyrpg.zip system.json template.json LICENSE lang/ module/ styles/ templates/ # Create a release for this specific version - name: Update Release with Files @@ -37,7 +37,6 @@ jobs: allowUpdates: true # Set this to false if you want to prevent updating existing releases draft: false prerelease: false - removeArtifacts: true # does this remove the default artifacts? - artifacts: './system.json, ./${{ github.event.release.tag_name }}.zip' + artifacts: './system.json, ./basicfantasyrpg.zip' tag: ${{ github.event.release.tag_name }} body: ${{ github.event.release.body }}