File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ jobs:
37
37
38
38
- name : Create tag
39
39
uses : rickstaa/action-create-tag@v1
40
- if : $VERSION_CHANGED
40
+ if : ${{ env. VERSION_CHANGED }}
41
41
with :
42
42
tag : " v${{ steps.extract_version.outputs.version }}"
43
43
44
44
- name : Make changelog
45
- if : $VERSION_CHANGED
45
+ if : ${{ env. VERSION_CHANGED }}
46
46
id : create_changelog
47
47
uses : mikepenz/release-changelog-builder-action@v3
48
48
env :
51
51
toTag : ' v${{ steps.extract_version.outputs.version }}'
52
52
53
53
- name : Create release
54
- if : $VERSION_CHANGED
54
+ if : ${{ env. VERSION_CHANGED }}
55
55
uses : softprops/action-gh-release@v1
56
56
with :
57
57
tag_name : ' v${{ steps.extract_version.outputs.version }}'
60
60
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
61
61
62
62
- name : Publish new version
63
- if : $VERSION_CHANGED
63
+ if : ${{ env. VERSION_CHANGED }}
64
64
# Note: Setting NODE_AUTH_TOKEN as job|workspace wide env var won't work
65
65
# as it appears actions/setup-node sets own value
66
66
env :
You can’t perform that action at this time.
0 commit comments