File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -51,18 +51,15 @@ jobs:
51
51
run : |
52
52
tar -xzf *.tgz --strip-components=1 -C ./release
53
53
54
- - name : Set up Git use
55
- run : |
56
- git config --global user.email "github-actions[bot]"
57
- git config user.email "github-actions[bot]@users.noreply.github.com"
58
-
59
54
- name : Push package contents to a new branch
60
55
run : |
56
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
57
+ git config --global user.name "github-actions[bot]"
61
58
cd ./release
62
59
git add .
63
60
git commit -m "Release v${{ steps.check.outputs.version }}"
64
- git push origin release
65
-
61
+ echo "Pushing with message: Release v${{ steps.check.outputs.version }}"
62
+
66
63
- name : Generate release notes
67
64
run : |
68
65
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^1)
You can’t perform that action at this time.
0 commit comments