Skip to content

Commit 6bed38a

Browse files
committed
fix: update condition checks for notify_testers and create_release inputs in Firebase App Distribution workflow
1 parent 4b77f2c commit 6bed38a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/Upload To Firebase App Distribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
fi
8080
8181
- name: Upload artifact to Firebase App Distribution
82-
if: ${{ github.event.inputs.notify_testers }}
82+
if: ${{ github.event.inputs.notify_testers == 'true' }}
8383
uses: wzieba/Firebase-Distribution-Github-Action@v1
8484
with:
8585
appId: ${{ github.event.inputs.environment == 'staging' && secrets.FIREBASE_APP_ID || secrets.FIREBASE_RELEASE_APP_ID }}
@@ -88,7 +88,7 @@ jobs:
8888
file: ${{ github.event.inputs.environment == 'staging' && 'app/build/outputs/apk/debug/app-debug.apk' || 'app/build/outputs/apk/release/app-release.apk' }}
8989

9090
- name: Create Release
91-
if: ${{ github.event.inputs.create_release }}
91+
if: ${{ github.event.inputs.create_release == 'true' }}
9292
uses: softprops/action-gh-release@v2
9393
with:
9494
name: ${{ github.event.inputs.release_title || 'New Release' }}

0 commit comments

Comments
 (0)