Skip to content

Commit a13dd65

Browse files
committed
fix: update Firebase App Distribution workflow to include release notes and prerelease options
1 parent 7c57b27 commit a13dd65

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ on:
2121
required: false
2222
release_notes:
2323
type: textarea
24-
description: 'Custom release notes (optional)'
24+
description: 'Release notes (optional)'
2525
required: false
2626
create_release:
2727
type: boolean
2828
description: 'Create New Release'
2929
required: false
3030
default: false
31-
notify_testers:
31+
prerelease:
3232
type: boolean
33-
description: 'Notify testers about this build'
33+
description: 'Pre-release'
3434
required: false
3535
default: true
3636

@@ -91,7 +91,9 @@ jobs:
9191
if: ${{ github.event.inputs.create_release }}
9292
uses: elgohr/Github-Release-Action@v5
9393
env:
94-
GH_TOKEN: ${{ secrets.TMDB_GITHUB_TOKEN }}
94+
GH_TOKEN: ${{ secrets.TMDB_GITHUB_TOKEN }}
9595
with:
96-
title: "${{ github.event.inputs.release_title || 'New Release' }}"
96+
title: ${{ github.event.inputs.release_title || 'New Release' }}
97+
description: ${{ github.event.inputs.release_notes }}
98+
prerelease: ${{ github.event.inputs.prerelease }}
9799
tag: "v${{ steps.all.outputs.version_major }}.${{ steps.all.outputs.version_minor }}.${{ steps.all.outputs.version_patch }}"

0 commit comments

Comments
 (0)