We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1552a9 commit df6e7c7Copy full SHA for df6e7c7
.github/workflows/netlify-deploy-release.yml
@@ -21,15 +21,17 @@ jobs:
21
- name: Install dependencies
22
run: yarn
23
24
- - name: Up version
25
- run: yarn version --new-version ${{ github.event.release.tag_name }}
26
-
+ # Note: it's important that this is being run before the version is upped
+ # because a commit will be created during the process
27
- name: Set git config
28
run: |
29
# setup the username and email.
30
git config user.name "GitHub Actions Bot"
31
git config user.email "<>"
32
+ - name: Up version
33
+ run: yarn version --new-version ${{ github.event.release.tag_name }}
34
+
35
- name: Set remote url with github token
36
run: git remote set-url origin https://${{ secrets.ACTION_GITHUB_BOT }}@github.com/on3iro/aeons-end-randomizer
37
0 commit comments