From ba8c2bde8622387fc09c2b9adbd6c23a139b9f1a Mon Sep 17 00:00:00 2001 From: cranci <100066266+cranci1@users.noreply.github.com> Date: Tue, 13 Feb 2024 16:01:00 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ce0bf09..0856421e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build and Publish IPA +name: Build IPA on: push: @@ -21,21 +21,3 @@ jobs: - name: Run ipabuild.sh run: ./ipabuild.sh - - - name: Archive .ipa - run: mv build/AnimeGen.ipa $GITHUB_WORKSPACE/AnimeGen.ipa - - - name: Generate Release Body - id: generate_release_body - run: echo "::set-output name=body::$(git log --format='%s' -n 1)" - - - name: Create GitHub Release - uses: softprops/action-gh-release@v1 - with: - files: | - AnimeGen.ipa - tag_name: ${{ github.sha }} - name: Release ${{ github.sha }} - body: ${{ steps.generate_release_body.outputs.body }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}