mirror of
https://github.com/bitwarden/android.git
synced 2026-05-21 03:21:29 -05:00
fixing logic for new filenames
This commit is contained in:
@@ -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: >
|
||||
|
||||
@@ -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: >
|
||||
|
||||
8
.github/workflows/publish-store.yml
vendored
8
.github/workflows/publish-store.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user