Skip to content

Commit 86791f9

Browse files
committed
Fixing release
1 parent 86babf5 commit 86791f9

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,15 @@ jobs:
5151
run: |
5252
tar -xzf *.tgz --strip-components=1 -C ./release
5353
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-
5954
- name: Push package contents to a new branch
6055
run: |
56+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
57+
git config --global user.name "github-actions[bot]"
6158
cd ./release
6259
git add .
6360
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+
6663
- name: Generate release notes
6764
run: |
6865
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^1)

0 commit comments

Comments
 (0)