Skip to content

Commit

Permalink
CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Dante291 committed Nov 30, 2023
1 parent 655f928 commit f8a1c84
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ jobs:
name: ios-build
path: build/ios

- name: Set up gh CLI
uses: actions/setup-gh@v1
- name: Set up Git
run: git config --global user.email "[email protected]" && git config --global user.name "GitHub Actions"

- name: Create Release
run: gh release create "v${{ github.run_number }}" ./build/ios/Runner.app --title "iOS App Release" --notes "This is an automated release, triggered by a recent push. This may or may not be stable, so please have a look at the stable release(s)."
run: |
TAG_NAME="v${{ github.run_number }}"
gh release create $TAG_NAME ./build/ios/Runner.app --title "iOS App Release" --notes "This is an automated release, triggered by a recent push. This may or may not be stable, so please have a look at the stable release(s)."

0 comments on commit f8a1c84

Please sign in to comment.