Resolve the Unauthorized issue on secrets manager (#12278) #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Bump Desktop Version | |
on: | |
push: | |
tags: | |
- desktop-v** | |
jobs: | |
bump-version: | |
name: Bump Desktop Version | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Generate GH App token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | |
id: app-token | |
with: | |
app-id: ${{ secrets.BW_GHAPP_ID }} | |
private-key: ${{ secrets.BW_GHAPP_KEY }} | |
- name: Check out target ref | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: main | |
token: ${{ steps.app-token.outputs.token }} | |
- name: Configure Git | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Actions" | |
- name: Get current Desktop version | |
id: current-desktop-version | |
run: | | |
CURRENT_VERSION=$(cat package.json | jq -r '.version') | |
echo "version=$CURRENT_VERSION" >> $GITHUB_OUTPUT | |
working-directory: apps/desktop | |
- name: Calculate next Desktop release version | |
id: calculate-next-desktop-version | |
uses: bitwarden/gh-actions/version-next@main | |
with: | |
version: ${{ steps.current-desktop-version.outputs.version }} | |
- name: Bump Desktop Version - Root - Automatic Calculation | |
id: bump-desktop-version-automatic | |
env: | |
VERSION: ${{ steps.calculate-next-desktop-version.outputs.version }} | |
run: npm version --workspace=@bitwarden/desktop $VERSION | |
- name: Bump Desktop Version - App - Automatic Calculation | |
env: | |
VERSION: ${{ steps.calculate-next-desktop-version.outputs.version }} | |
run: npm version $VERSION | |
working-directory: "apps/desktop/src" | |
- name: Commit files | |
env: | |
VERSION: ${{ steps.calculate-next-desktop-version.outputs.version }} | |
run: git commit -m "Bumped Desktop client to $VERSION" -a | |
- name: Push changes | |
run: git push |