fixing logic for new filenames

This commit is contained in:
Amy Galles
2025-10-03 14:22:48 -07:00
parent 274e8293a3
commit 55c150a595
3 changed files with 9 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ jobs:
uses: bitwarden/gh-actions/.github/workflows/_publish-mobile-github-release.yml@main
with:
release_name: "Authenticator"
workflow_name: "publish-github-release.yml"
workflow_name: "publish-github-release-bwa.yml"
credentials_filename: "authenticator_play_store-creds.json"
project_type: android
check_release_command: >

View File

@@ -16,7 +16,7 @@ jobs:
uses: bitwarden/gh-actions/.github/workflows/_publish-mobile-github-release.yml@main
with:
release_name: "Password Manager"
workflow_name: "publish-github-release-pm.yml"
workflow_name: "publish-github-release-pwm.yml"
credentials_filename: "play_creds.json"
project_type: android
check_release_command: >

View File

@@ -169,9 +169,15 @@ jobs:
- name: Enable Publish Github Release Workflow
if: ${{ steps.promote.conclusion == 'success' }}
env:
PRODUCT: ${{ inputs.product }}
run: |
if ${{ inputs.dry-run }} ; then
gh workflow view publish-github-release.yml
exit 0
fi
gh workflow enable publish-github-release.yml
if $PRODUCT == "Password Manager" ; then
gh workflow enable publish-github-release-pwm.yml
elif $PRODUCT == "Authenticator" ; then
gh workflow enable publish-github-release-bwa.yml
fi