Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Commit

Permalink
Fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
julb committed Feb 18, 2021
1 parent 5e6af56 commit a154503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
echo ::set-output name=release_source_branch_name::${GITHUB_REF#refs/heads/}
echo ::set-output name=release_version::${GITHUB_REF#refs/heads/releases/}
echo ::set-output name=release_major_version::$$(awk -F. '{print $1}' <<< ${GITHUB_REF#refs/heads/releases/})
echo ::set-output name=release_major_version::$(awk -F. '{print $1}' <<< ${GITHUB_REF#refs/heads/releases/})
echo ::set-output name=release_target_maintenance_branch_name::$(awk -F. '{print "maintenances/" $1 "." $2 ".x"}' <<< ${GITHUB_REF#refs/heads/releases/})
echo ::set-output name=release_target_default_branch_name::main
Expand Down

0 comments on commit a154503

Please sign in to comment.