File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,17 @@ jobs:
21
21
- name : Install dependencies
22
22
run : yarn
23
23
24
- - name : Up version
25
- run : yarn version --new-version ${{ github.event.release.tag_name }}
26
-
24
+ # Note: it's important that this is being run before the version is upped
25
+ # because a commit will be created during the process
27
26
- name : Set git config
28
27
run : |
29
28
# setup the username and email.
30
29
git config user.name "GitHub Actions Bot"
31
30
git config user.email "<>"
32
31
32
+ - name : Up version
33
+ run : yarn version --new-version ${{ github.event.release.tag_name }}
34
+
33
35
- name : Set remote url with github token
34
36
run : git remote set-url origin https://${{ secrets.ACTION_GITHUB_BOT }}@github.com/on3iro/aeons-end-randomizer
35
37
You can’t perform that action at this time.
0 commit comments