[ACS-7241] Support parallel releases (#4297)

* [ACS-7241] Parallel releases support v1

* [ACS-7241] Add missing needs clauses

* [ACS-7241] Proper conditional job check

* [ACS-7241] Revert testing changes, namespace fix

* [ACS-7241] Add improved conditions
This commit is contained in:
MichalKinas
2025-03-31 09:15:45 +02:00
committed by GitHub
parent 436127edb2
commit d88bf8ce3e
5 changed files with 125 additions and 106 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ runs:
- name: publish tag
shell: bash
run: |
if [[ "${{ inputs.branch_name }}" == "master" ]]; then
if [[ "${{ inputs.branch_name }}" == "master" ]] || [[ "${{ inputs.branch_name }}" == release/* ]]; then
VERSION=$(jq -cr '.version' < package.json)
echo "git tag -a ${VERSION} -m ${VERSION}"