diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a77ff5..f8a36f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,13 +42,9 @@ jobs: uses: actions/checkout@v3 - name: Create GitHub Release - uses: ghcli/release-action@v1 + uses: softprops/action-gh-release@v1 with: + files: build/compressed/* # Upload the files to the GitHub release tag_name: ${{ github.ref }} # Use the pushed tag as the release version release_name: Release ${{ github.ref }} body: "Automated release for version ${{ github.ref }}" - - - name: Upload release assets - uses: softprops/action-gh-release@v1 - with: - files: build/compressed/* # Upload the files to the GitHub release |