diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ee6ede7..4f97c15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,17 +56,7 @@ jobs: - name: Build Patches Package run: | - zip -9j custom.zip *.tgz *.gz VERSION - sha256sum custom.zip >checksum.sha256 - - - name: Upload to Artifacts - if: success() && env.VERSION == '' - uses: actions/upload-artifact@v4 - with: - name: custom - path: | - custom.zip - checksum.sha256 + zip -9j custom-${{ env.VERSION }}.zip *.tgz *.gz VERSION - name: Release if: success() && env.VERSION != '' @@ -79,5 +69,4 @@ jobs: body: | ${{ steps.Changelog.outputs.changelog }} artifacts: | - custom.zip - checksum.sha256 \ No newline at end of file + custom-*.zip \ No newline at end of file