File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ jobs:
32
32
- name : Push updates to branch for major version
33
33
if : |
34
34
steps.semantic.outputs.new_release_published == 'true' &&
35
- steps.semantic.outputs.new_release_channel == 'undefined'
35
+ steps.semantic.outputs.new_release_channel == null
36
36
run : " git push https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}"
37
37
env :
38
38
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
39
- name : Reset alpha branch
40
40
if : |
41
41
steps.semantic.outputs.new_release_published == 'true' &&
42
- steps.semantic.outputs.new_release_channel == 'undefined'
42
+ steps.semantic.outputs.new_release_channel == null
43
43
run : " git push --force https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/alpha"
44
44
env :
45
45
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments