diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 724e5106..00aee37d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,23 +29,23 @@ jobs: path: build/AnimeGen.ipa release: - runs-on: ubuntu-latest - needs: build - steps: - - name: Download IPA Artifact - uses: actions/download-artifact@v2 - with: - name: ipa-artifact - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '14' - - - name: Install GitHub CLI - run: npm install -g gh - - - name: Create Release - run: | - gh auth login --with-token ${{ secrets.GITHUB_TOKEN }} - gh release create ${{ github.ref }} './AnimeGen.ipa' --title "Release ${{ github.ref }}" --notes "Release notes for ${{ github.ref }}" --draft false --prerelease false + runs-on: ubuntu-latest + needs: build + steps: + - name: Download IPA Artifact + uses: actions/download-artifact@v2 + with: + name: ipa-artifact + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '14' + + - name: Install GitHub CLI + run: npm install -g gh + + - name: Create Release + run: | + gh auth login --with-token ${{ secrets.GITHUB_TOKEN }} + gh release create ${{ github.ref }} './AnimeGen.ipa' --title "Release ${{ github.ref }}" --notes "Release notes for ${{ github.ref }}" --draft false