Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cranci1 authored Feb 13, 2024
1 parent d1772ac commit a2192ae
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a2192ae

Please sign in to comment.