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 @@ -35,22 +35,22 @@ jobs:
35
35
token : ${{ github.token }}
36
36
37
37
- name : Git Setup
38
- if : ${{ steps.semver.outputs.next }}
38
+ if : steps.semver.outputs.next
39
39
run : |
40
40
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
41
41
git config --global user.name "${GITHUB_ACTOR}"
42
42
git checkout -b ${{ env.branch }}
43
43
44
44
- name : Rebuild ./dist
45
- if : ${{ steps.semver.outputs.next }}
45
+ if : steps.semver.outputs.next
46
46
run : |
47
47
npm run dist
48
48
git add ./dist --force
49
49
git commit -m "Rebuild dist/ directory"
50
50
git push -u origin HEAD:${{ env.branch }}
51
51
52
52
- name : Tag and Release (Major)
53
- if : ${{ steps.semver.outputs.next }}
53
+ if : steps.semver.outputs.next
54
54
env :
55
55
GH_TOKEN : ${{ github.token }}
56
56
tag : ${{ steps.semver.outputs.nextMajor }}
65
65
fi
66
66
67
67
- name : Tag and Release (Semver)
68
- if : ${{ steps.semver.outputs.next }}
68
+ if : steps.semver.outputs.next
69
69
env :
70
70
GH_TOKEN : ${{ github.token }}
71
71
tag : ${{ steps.semver.outputs.next }}
You can’t perform that action at this time.
0 commit comments