ci: Use tag_name input in release and promote workflows (#3366)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-10-06 21:30:20 -05:00 committed by GitHub
parent 3f923ae5c6
commit daa8785709
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -98,8 +98,8 @@ jobs:
- name: Update GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ inputs.base_version }}
tag_name: ${{ inputs.tag_name }}
name: ${{ inputs.tag_name }} (${{ needs.prepare-build-info.outputs.APP_VERSION_CODE }})
generate_release_notes: true
draft: false
prerelease: ${{ inputs.channel != 'production' }}
prerelease: ${{ inputs.channel != 'production' }}

View file

@ -236,9 +236,9 @@ jobs:
- name: Create or Update GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ inputs.base_version }}
tag_name: ${{ inputs.tag_name }}
name: ${{ inputs.tag_name }} (${{ needs.prepare-build-info.outputs.APP_VERSION_CODE }})
generate_release_notes: true
files: ./artifacts/*/*
draft: true
prerelease: true
prerelease: true