From d14e818d7d58b4c4a5ed5308b7cd5485853b1236 Mon Sep 17 00:00:00 2001 From: cranci <100066266+cranci1@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:09:59 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 960d60e1..255c0059 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,12 +30,12 @@ jobs: run: echo "::set-output name=body::$(git log --format='%s' -n 1)" - name: Create GitHub Release - uses: marvinpinto/action-automatic-releases@v1.2.1 + uses: softprops/action-gh-release@v1 with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - automatic_release_tag: "latest" - prerelease: true - title: "Release ${{ github.sha }}" files: | - AnimeGen.ipa + YourApp.ipa + tag_name: ${{ github.sha }} + name: Release ${{ github.sha }} body: ${{ steps.generate_release_body.outputs.body }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}