Skip to content

Commit

Permalink
chore: update release upload step to run on tag refs
Browse files Browse the repository at this point in the history
  • Loading branch information
Duell10111 committed Jan 25, 2025
1 parent bdc9a4a commit c1be27d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
name: tvos_ipa
path: ios/*.ipa
- name: Upload IPA to Release
if: ${{ github.event_name == 'release' }}
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: ios/*.ipa
# build_ios_without_signing_phone: # Disabled as the compile phase throws an error
Expand Down Expand Up @@ -99,8 +99,8 @@ jobs:
with:
name: android_phone_apk
path: android/app/build/outputs/apk/release/*.apk
- name: Upload IPA to Release
if: ${{ github.event_name == 'release' }}
uses: softprops/action-gh-release@v1
- name: Upload APK to Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: android/app/build/outputs/apk/release/*.apk

0 comments on commit c1be27d

Please sign in to comment.