mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Version Bump workflow - Add in step for installing xmllint (#3787)
This commit is contained in:
parent
5c1cecbd02
commit
d2eaadb158
11
.github/workflows/version-bump.yml
vendored
11
.github/workflows/version-bump.yml
vendored
@ -165,20 +165,21 @@ jobs:
|
|||||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
with:
|
with:
|
||||||
ref: main
|
ref: main
|
||||||
|
|
||||||
|
- name: Install xmllint
|
||||||
|
run: sudo apt install -y libxml2-utils
|
||||||
|
|
||||||
- name: Verify version has been updated
|
- name: Verify version has been updated
|
||||||
env:
|
env:
|
||||||
NEW_VERSION: ${{ inputs.version_number }}
|
NEW_VERSION: ${{ inputs.version_number }}
|
||||||
run: |
|
run: |
|
||||||
CURRENT_VERSION=$(xmllint -xpath "/Project/PropertyGroup/Version/text()" Directory.Build.props)
|
|
||||||
|
|
||||||
# Wait for version to change.
|
# Wait for version to change.
|
||||||
while [[ "$NEW_VERSION" != "$CURRENT_VERSION" ]]
|
|
||||||
do
|
do
|
||||||
echo "Waiting for version to be updated..."
|
echo "Waiting for version to be updated..."
|
||||||
sleep 10
|
|
||||||
git pull --force
|
git pull --force
|
||||||
done
|
CURRENT_VERSION=$(xmllint -xpath "/Project/PropertyGroup/Version/text()" Directory.Build.props)
|
||||||
|
sleep 10
|
||||||
|
done while [[ "$NEW_VERSION" != "$CURRENT_VERSION" ]]
|
||||||
|
|
||||||
- name: Cut RC branch
|
- name: Cut RC branch
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user