1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

Fix auto version bump workflow (#7883)

This commit is contained in:
Vince Grassia 2024-02-09 05:29:47 -05:00 committed by GitHub
parent 5c6245aaae
commit 63674cc521
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,5 @@
--- ---
name: Version Auto Bump name: Auto Bump Desktop Version
on: on:
push: push:
@ -11,11 +11,9 @@ defaults:
shell: bash shell: bash
jobs: jobs:
setup: bump-version:
name: "Setup" name: Bump Desktop Version
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
outputs:
version_number: ${{ steps.version.outputs.new-version }}
steps: steps:
- name: Checkout Branch - name: Checkout Branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@ -36,13 +34,25 @@ jobs:
NEW_VER=$CURR_MAJOR.$NEW_PATCH NEW_VER=$CURR_MAJOR.$NEW_PATCH
echo "New Version: $NEW_VER" echo "New Version: $NEW_VER"
echo "new-version=$NEW_VER" >> $GITHUB_OUTPUT echo "New Version: $NEW_VER" >> $GITHUB_STEP_SUMMARY
echo "new_version=$NEW_VER" >> $GITHUB_OUTPUT
trigger_version_bump: - name: Login to Azure - CI Subscription
name: Bump version to ${{ needs.setup.outputs.version_number }} uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
needs: setup with:
uses: ./.github/workflows/version-bump.yml creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
with:
version_number: ${{ needs.setup.outputs.version_number }} - name: Retrieve bot secrets
bump_desktop: true id: retrieve-bot-secrets
secrets: inherit uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: bitwarden-ci
secrets: "github-pat-bitwarden-devops-bot-repo-scope"
- name: "Bump version to ${{ steps.version.outputs.new_version }}"
env:
GH_TOKEN: ${{ steps.retrieve-bot-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
run: |
echo '{"cut_rc_branch": "false", "version_number": "${{ steps.version.outputs.new_version }}",
"bump_browser": "false", "bump_cli": "false", "bump_desktop": "true", "bump_web": "false"}' | \
gh workflow run version-bump.yml --json --repo bitwarden/clients