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 8fcb14f commit 0ae2a3bCopy full SHA for 0ae2a3b
.github/workflows/update_versions.yml
@@ -64,8 +64,9 @@ jobs:
64
id: name-branch
65
run: |
66
date_str=$(date "+%Y%m%d-%H%M%S")
67
- echo "NEW_BRANCH=version-${{github.event.inputs.package_version_number}}-${date_str}" >> $GITHUB_ENV
68
- echo "::set-output name=new_branch::${NEW_BRANCH}"
+ new_branch=version-${{github.event.inputs.package_version_number}}-${date_str}
+ echo "NEW_BRANCH=${new_branch}" >> $GITHUB_ENV
69
+ echo "::set-output name=new_branch::${new_branch}"
70
71
- name: Create new branch
72
0 commit comments