2021-12-01 01:53:18 +03:00
|
|
|
---
|
|
|
|
name: Version Bump
|
2023-12-12 18:22:22 +03:00
|
|
|
run-name: Version Bump - v${{ inputs.version_number }}
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
on:
|
2023-12-12 18:22:22 +03:00
|
|
|
workflow_dispatch:
|
2023-04-03 11:13:52 +03:00
|
|
|
inputs:
|
|
|
|
version_number:
|
2023-12-12 18:22:22 +03:00
|
|
|
description: "New version (example: '2024.1.0')"
|
2023-04-03 11:13:52 +03:00
|
|
|
required: true
|
2023-12-15 15:30:15 +03:00
|
|
|
cut_rc_branch:
|
|
|
|
description: "Cut RC branch?"
|
|
|
|
default: true
|
|
|
|
type: boolean
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
bump_version:
|
2023-12-12 18:22:22 +03:00
|
|
|
name: "Bump Version to v${{ inputs.version_number }}"
|
|
|
|
runs-on: ubuntu-22.04
|
2021-12-01 01:53:18 +03:00
|
|
|
steps:
|
2023-04-18 13:48:05 +03:00
|
|
|
- name: Login to Azure - CI Subscription
|
2024-01-24 18:07:10 +03:00
|
|
|
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0
|
2022-10-17 18:19:06 +03:00
|
|
|
with:
|
2023-04-11 18:18:59 +03:00
|
|
|
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
|
2022-10-17 18:19:06 +03:00
|
|
|
|
|
|
|
- name: Retrieve secrets
|
|
|
|
id: retrieve-secrets
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/get-keyvault-secrets@main
|
2022-10-17 18:19:06 +03:00
|
|
|
with:
|
2023-04-11 18:18:59 +03:00
|
|
|
keyvault: "bitwarden-ci"
|
2023-12-12 18:22:22 +03:00
|
|
|
secrets: "github-gpg-private-key,
|
|
|
|
github-gpg-private-key-passphrase,
|
|
|
|
github-pat-bitwarden-devops-bot-repo-scope"
|
2022-10-17 18:19:06 +03:00
|
|
|
|
2023-12-12 20:38:12 +03:00
|
|
|
- name: Checkout Branch
|
2024-01-24 18:07:10 +03:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-12-12 20:38:12 +03:00
|
|
|
with:
|
2023-12-13 13:56:34 +03:00
|
|
|
ref: main
|
2024-02-05 16:49:22 +03:00
|
|
|
|
|
|
|
- name: Check if RC branch exists
|
|
|
|
if: ${{ inputs.cut_rc_branch == true }}
|
|
|
|
run: |
|
|
|
|
remote_rc_branch_check=$(git ls-remote --heads origin rc | wc -l)
|
|
|
|
if [[ "${remote_rc_branch_check}" -gt 0 ]]; then
|
|
|
|
echo "Remote RC branch exists."
|
|
|
|
echo "Please delete current RC branch before running again."
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-12-12 20:38:12 +03:00
|
|
|
|
2022-10-17 18:19:06 +03:00
|
|
|
- name: Import GPG key
|
2024-02-05 17:08:33 +03:00
|
|
|
uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
|
2022-10-17 18:19:06 +03:00
|
|
|
with:
|
|
|
|
gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }}
|
|
|
|
passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }}
|
|
|
|
git_user_signingkey: true
|
|
|
|
git_commit_gpgsign: true
|
|
|
|
|
2021-12-01 01:53:18 +03:00
|
|
|
- name: Create Version Branch
|
2023-12-12 18:22:22 +03:00
|
|
|
id: create-branch
|
|
|
|
run: |
|
|
|
|
NAME=version_bump_${{ github.ref_name }}_${{ inputs.version_number }}
|
|
|
|
git switch -c $NAME
|
|
|
|
echo "name=$NAME" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Install xmllint
|
|
|
|
run: sudo apt install -y libxml2-utils
|
|
|
|
|
|
|
|
- name: Verify input version
|
|
|
|
env:
|
|
|
|
NEW_VERSION: ${{ inputs.version_number }}
|
|
|
|
run: |
|
|
|
|
CURRENT_VERSION=$(xmllint --xpath '
|
|
|
|
string(/manifest/@*[local-name()="versionName"
|
|
|
|
and namespace-uri()="http://schemas.android.com/apk/res/android"])
|
|
|
|
' src/Android/Properties/AndroidManifest.xml)
|
|
|
|
|
|
|
|
# Error if version has not changed.
|
|
|
|
if [[ "$NEW_VERSION" == "$CURRENT_VERSION" ]]; then
|
|
|
|
echo "Version has not changed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if version is newer.
|
|
|
|
printf '%s\n' "${CURRENT_VERSION}" "${NEW_VERSION}" | sort -C -V
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "Version check successful."
|
|
|
|
else
|
|
|
|
echo "Version check failed."
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
- name: Bump Version - Android XML
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/version-bump@main
|
2021-12-01 01:53:18 +03:00
|
|
|
with:
|
2023-12-12 18:22:22 +03:00
|
|
|
version: ${{ inputs.version_number }}
|
|
|
|
file_path: "src/Android/Properties/AndroidManifest.xml"
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
- name: Bump Version - iOS.Autofill
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/version-bump@main
|
2021-12-01 01:53:18 +03:00
|
|
|
with:
|
2023-12-12 18:22:22 +03:00
|
|
|
version: ${{ inputs.version_number }}
|
|
|
|
file_path: "src/iOS.Autofill/Info.plist"
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
- name: Bump Version - iOS.Extension
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/version-bump@main
|
2021-12-01 01:53:18 +03:00
|
|
|
with:
|
2023-12-12 18:22:22 +03:00
|
|
|
version: ${{ inputs.version_number }}
|
|
|
|
file_path: "src/iOS.Extension/Info.plist"
|
2021-12-01 01:53:18 +03:00
|
|
|
|
2022-02-10 18:54:43 +03:00
|
|
|
- name: Bump Version - iOS.ShareExtension
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/version-bump@main
|
2022-02-10 18:54:43 +03:00
|
|
|
with:
|
2023-12-12 18:22:22 +03:00
|
|
|
version: ${{ inputs.version_number }}
|
|
|
|
file_path: "src/iOS.ShareExtension/Info.plist"
|
2022-02-10 18:54:43 +03:00
|
|
|
|
2021-12-01 01:53:18 +03:00
|
|
|
- name: Bump Version - iOS
|
2023-11-09 18:18:34 +03:00
|
|
|
uses: bitwarden/gh-actions/version-bump@main
|
2021-12-01 01:53:18 +03:00
|
|
|
with:
|
2023-12-12 18:22:22 +03:00
|
|
|
version: ${{ inputs.version_number }}
|
|
|
|
file_path: "src/iOS/Info.plist"
|
2021-12-01 01:53:18 +03:00
|
|
|
|
2022-07-15 12:08:38 +03:00
|
|
|
- name: Setup git
|
2021-12-01 01:53:18 +03:00
|
|
|
run: |
|
2022-10-17 18:19:06 +03:00
|
|
|
git config --local user.email "106330231+bitwarden-devops-bot@users.noreply.github.com"
|
|
|
|
git config --local user.name "bitwarden-devops-bot"
|
2022-07-15 12:08:38 +03:00
|
|
|
|
|
|
|
- name: Check if version changed
|
|
|
|
id: version-changed
|
|
|
|
run: |
|
|
|
|
if [ -n "$(git status --porcelain)" ]; then
|
2022-12-05 18:04:34 +03:00
|
|
|
echo "changes_to_commit=TRUE" >> $GITHUB_OUTPUT
|
2022-07-15 12:08:38 +03:00
|
|
|
else
|
2022-12-05 18:04:34 +03:00
|
|
|
echo "changes_to_commit=FALSE" >> $GITHUB_OUTPUT
|
2022-07-15 12:08:38 +03:00
|
|
|
echo "No changes to commit!";
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Commit files
|
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2023-12-12 18:22:22 +03:00
|
|
|
run: git commit -m "Bumped version to ${{ inputs.version_number }}" -a
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
- name: Push changes
|
2022-07-15 12:08:38 +03:00
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2023-12-12 18:22:22 +03:00
|
|
|
env:
|
|
|
|
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
|
|
|
|
run: git push -u origin $PR_BRANCH
|
2021-12-01 01:53:18 +03:00
|
|
|
|
|
|
|
- name: Create Version PR
|
2022-07-15 12:08:38 +03:00
|
|
|
if: ${{ steps.version-changed.outputs.changes_to_commit == 'TRUE' }}
|
2023-12-12 18:22:22 +03:00
|
|
|
id: create-pr
|
2021-12-01 01:53:18 +03:00
|
|
|
env:
|
2023-12-15 15:30:15 +03:00
|
|
|
GH_TOKEN: ${{ steps.retrieve-secrets.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
|
2023-12-12 18:22:22 +03:00
|
|
|
PR_BRANCH: ${{ steps.create-branch.outputs.name }}
|
|
|
|
TITLE: "Bump version to ${{ inputs.version_number }}"
|
2021-12-01 01:53:18 +03:00
|
|
|
run: |
|
2023-12-12 18:22:22 +03:00
|
|
|
PR_URL=$(gh pr create --title "$TITLE" \
|
2023-12-12 22:12:27 +03:00
|
|
|
--base "main" \
|
2021-12-01 01:53:18 +03:00
|
|
|
--head "$PR_BRANCH" \
|
|
|
|
--label "version update" \
|
|
|
|
--label "automated pr" \
|
|
|
|
--body "
|
|
|
|
## Type of change
|
|
|
|
- [ ] Bug fix
|
|
|
|
- [ ] New feature development
|
|
|
|
- [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc)
|
|
|
|
- [ ] Build/deploy pipeline (DevOps)
|
|
|
|
- [X] Other
|
2022-01-13 00:07:01 +03:00
|
|
|
|
2021-12-01 01:53:18 +03:00
|
|
|
## Objective
|
2023-12-12 18:22:22 +03:00
|
|
|
Automated 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 }}
|
2023-12-12 22:12:27 +03:00
|
|
|
run: gh pr merge $PR_NUMBER --squash --auto --delete-branch
|
2023-12-15 15:30:15 +03:00
|
|
|
|
|
|
|
cut_rc:
|
2023-12-18 20:59:41 +03:00
|
|
|
name: Cut RC branch
|
2023-12-15 15:30:15 +03:00
|
|
|
needs: bump_version
|
2023-12-18 20:59:41 +03:00
|
|
|
if: ${{ inputs.cut_rc_branch == true }}
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout Branch
|
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
with:
|
|
|
|
ref: main
|
|
|
|
|
2024-02-05 16:49:22 +03:00
|
|
|
- name: Verify version has been updated
|
|
|
|
env:
|
|
|
|
NEW_VERSION: ${{ inputs.version_number }}
|
2023-12-18 20:59:41 +03:00
|
|
|
run: |
|
2024-02-05 16:49:22 +03:00
|
|
|
CURRENT_VERSION=$(xmllint --xpath '
|
|
|
|
string(/manifest/@*[local-name()="versionName"
|
|
|
|
and namespace-uri()="http://schemas.android.com/apk/res/android"])
|
|
|
|
' src/Android/Properties/AndroidManifest.xml)
|
|
|
|
|
|
|
|
# Wait for version to change.
|
|
|
|
while [[ "$NEW_VERSION" != "$CURRENT_VERSION" ]]
|
|
|
|
do
|
|
|
|
echo "Waiting for version to be updated..."
|
|
|
|
sleep 10
|
|
|
|
git pull --force
|
|
|
|
done
|
2023-12-18 20:59:41 +03:00
|
|
|
|
|
|
|
- name: Cut RC branch
|
|
|
|
run: |
|
|
|
|
git switch --quiet --create rc
|
|
|
|
git push --quiet --set-upstream origin rc
|