mirror of
https://github.com/bitwarden/android.git
synced 2026-03-19 05:02:48 -05:00
Co-authored-by: Patrick Honkonen <1883101+SaintPatrck@users.noreply.github.com> Co-authored-by: Álison Fernandes <vvolkgang@users.noreply.github.com>
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: Publish Password Manager and Authenticator GitHub Release as newest
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 3 * * 1-5'
|
|
|
|
permissions:
|
|
contents: write
|
|
id-token: write
|
|
actions: read
|
|
|
|
jobs:
|
|
publish-release-password-manager:
|
|
name: Publish Password Manager Release
|
|
uses: bitwarden/gh-actions/.github/workflows/_publish-mobile-github-release.yml@main
|
|
with:
|
|
release_name: "Password Manager"
|
|
workflow_name: "publish-github-release.yml"
|
|
credentials_filename: "play_creds.json"
|
|
project_type: android
|
|
check_release_command: >
|
|
bundle exec fastlane getLatestPlayStoreVersion package_name:com.x8bit.bitwarden track:production
|
|
secrets: inherit
|
|
|
|
publish-release-authenticator:
|
|
name: Publish Authenticator Release
|
|
uses: bitwarden/gh-actions/.github/workflows/_publish-mobile-github-release.yml@main
|
|
with:
|
|
release_name: "Authenticator"
|
|
workflow_name: "publish-github-release.yml"
|
|
credentials_filename: "authenticator_play_store-creds.json"
|
|
project_type: android
|
|
check_release_command: >
|
|
bundle exec fastlane getLatestPlayStoreVersion package_name:com.bitwarden.authenticator track:production
|
|
secrets: inherit
|