We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e15da4 commit f99c122Copy full SHA for f99c122
.github/workflows/release.yml
@@ -42,6 +42,10 @@ jobs:
42
echo "[ERROR] Cannot proceed with release - tag already exists"
43
fi
44
45
+ - name: Set up Python 3.9
46
+ uses: actions/setup-python@v4
47
+ with:
48
+ python-version: 3.9
49
- name: Set up yq
50
run: |
51
python -m pip install --upgrade pip
make-release.sh
@@ -66,7 +66,7 @@ updateYaml() {
66
return 1
67
else
68
if [[ $(git rev-parse --abbrev-ref HEAD) == *"${BRANCH}"* ]]; then
69
- replaceFieldSed $playbookfile 'version' "${BRANCH}"
+ replaceFieldSed $playbookfile '^version' "${BRANCH}"
70
replaceFieldSed $playbookfile 'prerelease' "false"
71
72
# special fields for updating PR for 7.x.y branch
0 commit comments