mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-22 11:45:59 +01:00
Update Version Bump workflow (#7180)
This commit is contained in:
parent
4964c63258
commit
007f21fc7f
132
.github/workflows/version-bump.yml
vendored
132
.github/workflows/version-bump.yml
vendored
@ -1,51 +1,60 @@
|
|||||||
---
|
---
|
||||||
name: Version Bump
|
name: Version Bump
|
||||||
run-name: Version Bump - ${{ github.ref_name }}
|
run-name: Version Bump - v${{ inputs.version_number }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
bump_browser:
|
bump_browser:
|
||||||
description: "Browser Project Version Bump"
|
description: "Bump Browser?"
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
bump_cli:
|
bump_cli:
|
||||||
description: "CLI Project Version Bump"
|
description: "Bump CLI?"
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
bump_desktop:
|
bump_desktop:
|
||||||
description: "Desktop Project Version Bump"
|
description: "Bump Desktop?"
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
bump_web:
|
bump_web:
|
||||||
description: "Web Project Version Bump"
|
description: "Bump Web?"
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
version_number:
|
version_number:
|
||||||
description: "New Version"
|
description: "New version (example: '2024.1.0')"
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
version_number:
|
bump_browser:
|
||||||
required: true
|
description: "Bump Browser?"
|
||||||
type: string
|
|
||||||
bump_desktop:
|
|
||||||
description: "Desktop Project Version Bump"
|
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
bump_cli:
|
||||||
defaults:
|
description: "Bump CLI?"
|
||||||
run:
|
type: boolean
|
||||||
shell: bash
|
default: false
|
||||||
|
bump_desktop:
|
||||||
|
description: "Bump Desktop?"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
bump_web:
|
||||||
|
description: "Bump Web?"
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
version_number:
|
||||||
|
description: "New version (example: '2024.1.0')"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
bump_version:
|
bump_version:
|
||||||
name: "Bump Version"
|
name: "Bump Version to v${{ inputs.version_number }}"
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Branch
|
- name: Checkout Branch
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
||||||
|
|
||||||
- name: Login to Azure - Prod Subscription
|
- name: Login to Azure - Prod Subscription
|
||||||
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
|
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
|
||||||
@ -57,10 +66,12 @@ jobs:
|
|||||||
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
||||||
with:
|
with:
|
||||||
keyvault: "bitwarden-ci"
|
keyvault: "bitwarden-ci"
|
||||||
secrets: "github-gpg-private-key, github-gpg-private-key-passphrase"
|
secrets: "github-gpg-private-key,
|
||||||
|
github-gpg-private-key-passphrase,
|
||||||
|
github-pat-bitwarden-devops-bot-repo-scope"
|
||||||
|
|
||||||
- name: Import GPG key
|
- name: Import GPG key
|
||||||
uses: crazy-max/ghaction-import-gpg@72b6676b71ab476b77e676928516f6982eef7a41 # v5.3.0
|
uses: crazy-max/ghaction-import-gpg@82a020f1f7f605c65dd2449b392a52c3fcfef7ef # v6.0.0
|
||||||
with:
|
with:
|
||||||
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
|
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
|
||||||
passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}
|
passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}
|
||||||
@ -68,9 +79,7 @@ jobs:
|
|||||||
git_commit_gpgsign: true
|
git_commit_gpgsign: true
|
||||||
|
|
||||||
- name: Create Version Branch
|
- name: Create Version Branch
|
||||||
id: branch
|
id: create-branch
|
||||||
env:
|
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: |
|
run: |
|
||||||
CLIENTS=()
|
CLIENTS=()
|
||||||
if [[ ${{ inputs.bump_browser }} == true ]]; then
|
if [[ ${{ inputs.bump_browser }} == true ]]; then
|
||||||
@ -88,9 +97,9 @@ jobs:
|
|||||||
printf -v joined '%s,' "${CLIENTS[@]}"
|
printf -v joined '%s,' "${CLIENTS[@]}"
|
||||||
echo "client=${joined%,}" >> $GITHUB_OUTPUT
|
echo "client=${joined%,}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
BRANCH=version_bump_${VERSION}_${GITHUB_SHA:0:7}
|
NAME=version_bump_${{ github.ref_name }}_${{ inputs.version_number }}
|
||||||
echo "branch=$BRANCH" >> $GITHUB_OUTPUT
|
git switch -c $NAME
|
||||||
git switch -c ${BRANCH}
|
echo "name=$NAME" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# VERSION BUMP SECTION #
|
# VERSION BUMP SECTION #
|
||||||
@ -114,14 +123,15 @@ jobs:
|
|||||||
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Version check successful."
|
echo "Version check successful."
|
||||||
|
else
|
||||||
|
echo "Version check failed."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
working-directory: apps/browser
|
working-directory: apps/browser
|
||||||
|
|
||||||
- name: Bump Browser Version
|
- name: Bump Browser Version
|
||||||
if: ${{ inputs.bump_browser == true }}
|
if: ${{ inputs.bump_browser == true }}
|
||||||
env:
|
run: npm version --workspace=@bitwarden/browser ${{ inputs.version_number }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: npm version --workspace=@bitwarden/browser ${VERSION}
|
|
||||||
|
|
||||||
- name: Bump Browser Version - Manifest
|
- name: Bump Browser Version - Manifest
|
||||||
if: ${{ inputs.bump_browser == true }}
|
if: ${{ inputs.bump_browser == true }}
|
||||||
@ -162,14 +172,15 @@ jobs:
|
|||||||
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Version check successful."
|
echo "Version check successful."
|
||||||
|
else
|
||||||
|
echo "Version check failed."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
working-directory: apps/cli
|
working-directory: apps/cli
|
||||||
|
|
||||||
- name: Bump CLI Version
|
- name: Bump CLI Version
|
||||||
if: ${{ inputs.bump_cli == true }}
|
if: ${{ inputs.bump_cli == true }}
|
||||||
env:
|
run: npm version --workspace=@bitwarden/cli ${{ inputs.version_number }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: npm version --workspace=@bitwarden/cli ${VERSION}
|
|
||||||
|
|
||||||
### Desktop
|
### Desktop
|
||||||
- name: Desktop - Verify input version
|
- name: Desktop - Verify input version
|
||||||
@ -189,20 +200,19 @@ jobs:
|
|||||||
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Version check successful."
|
echo "Version check successful."
|
||||||
|
else
|
||||||
|
echo "Version check failed."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
working-directory: apps/desktop
|
working-directory: apps/desktop
|
||||||
|
|
||||||
- name: Bump Desktop Version - Root
|
- name: Bump Desktop Version - Root
|
||||||
if: ${{ inputs.bump_desktop == true }}
|
if: ${{ inputs.bump_desktop == true }}
|
||||||
env:
|
run: npm version --workspace=@bitwarden/desktop ${{ inputs.version_number }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: npm version --workspace=@bitwarden/desktop ${VERSION}
|
|
||||||
|
|
||||||
- name: Bump Desktop Version - App
|
- name: Bump Desktop Version - App
|
||||||
if: ${{ inputs.bump_desktop == true }}
|
if: ${{ inputs.bump_desktop == true }}
|
||||||
env:
|
run: npm version ${{ inputs.version_number }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: npm version ${VERSION}
|
|
||||||
working-directory: "apps/desktop/src"
|
working-directory: "apps/desktop/src"
|
||||||
|
|
||||||
### Web
|
### Web
|
||||||
@ -223,14 +233,15 @@ jobs:
|
|||||||
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "Version check successful."
|
echo "Version check successful."
|
||||||
|
else
|
||||||
|
echo "Version check failed."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
working-directory: apps/web
|
working-directory: apps/web
|
||||||
|
|
||||||
- name: Bump Web Version
|
- name: Bump Web Version
|
||||||
if: ${{ inputs.bump_web == true }}
|
if: ${{ inputs.bump_web == true }}
|
||||||
env:
|
run: npm version --workspace=@bitwarden/web-vault ${{ inputs.version_number }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
|
||||||
run: npm version --workspace=@bitwarden/web-vault ${VERSION}
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
|
|
||||||
@ -252,27 +263,27 @@ jobs:
|
|||||||
- name: Commit files
|
- name: Commit files
|
||||||
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
||||||
env:
|
env:
|
||||||
CLIENT: ${{ steps.branch.outputs.client }}
|
CLIENT: ${{ steps.create-branch.outputs.client }}
|
||||||
VERSION: ${{ inputs.version_number }}
|
VERSION: ${{ inputs.version_number }}
|
||||||
run: git commit -m "Bumped ${CLIENT} version to ${VERSION}" -a
|
run: git commit -m "Bumped ${CLIENT} version to ${VERSION}" -a
|
||||||
|
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
if: ${{ (github.ref == 'refs/heads/master') && (steps.version-changed.outputs.changes_to_commit == 'TRUE') }}
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
||||||
env:
|
env:
|
||||||
BRANCH: ${{ steps.branch.outputs.branch }}
|
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
|
||||||
run: git push -u origin ${BRANCH}
|
run: git push -u origin $PR_BRANCH
|
||||||
|
|
||||||
- name: Create Bump Version PR
|
- name: Create Version PR
|
||||||
if: ${{ (github.ref == 'refs/heads/master') && (steps.version-changed.outputs.changes_to_commit == 'TRUE') }}
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
||||||
|
id: create-pr
|
||||||
env:
|
env:
|
||||||
BASE_BRANCH: master
|
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
|
||||||
BRANCH: ${{ steps.branch.outputs.branch }}
|
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
TITLE: "Bump ${{ steps.create-branch.outputs.client }} version to ${{ inputs.version_number }}"
|
||||||
TITLE: "Bump ${{ steps.branch.outputs.client }} version to ${{ inputs.version_number }}"
|
|
||||||
run: |
|
run: |
|
||||||
gh pr create --title "$TITLE" \
|
PR_URL=$(gh pr create --title "$TITLE" \
|
||||||
--base "$BASE_BRANCH" \
|
--base "$GITHUB_REF" \
|
||||||
--head "$BRANCH" \
|
--head "$PR_BRANCH" \
|
||||||
--label "version update" \
|
--label "version update" \
|
||||||
--label "automated pr" \
|
--label "automated pr" \
|
||||||
--body "
|
--body "
|
||||||
@ -284,4 +295,17 @@ jobs:
|
|||||||
- [X] Other
|
- [X] Other
|
||||||
|
|
||||||
## Objective
|
## Objective
|
||||||
Automated ${{ steps.branch.outputs.client }} version bump to ${{ inputs.version_number }}"
|
Automated ${{ steps.create-branch.outputs.client }} version bump to ${{ inputs.version_number }}")
|
||||||
|
echo "pr_number=${PR_URL##*/}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Approve PR
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
PR_NUMBER: ${{ steps.create-pr.outputs.pr_number }}
|
||||||
|
run: gh pr review $PR_NUMBER --approve
|
||||||
|
|
||||||
|
- name: Merge PR
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
||||||
|
PR_NUMBER: ${{ steps.create-pr.outputs.pr_number }}
|
||||||
|
run: gh pr merge $PR_NUMBER --squash --auto --delete-branch
|
||||||
|
Loading…
Reference in New Issue
Block a user