Skip to content

Commit 4c72225

Browse files
committed
fix: rectify github-action email
1 parent 841b86d commit 4c72225

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ jobs:
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: 'node'
23-
24-
- name: Change Branch
25-
run: |
26-
git checkout -B production
2723

2824
- name: Cleanup
2925
run: |
@@ -38,12 +34,15 @@ jobs:
3834
npm install
3935
npm run build
4036
37+
4138
- name: Prepare Deploy Branch
4239
run: |
4340
git config user.name "github-actions[bot]"
44-
git config user.email "github-actions[bot]@users.noreply.com"
41+
git config user.email "github-actions[bot]@users.noreply.github.com"
4542
46-
git add .
43+
git checkout -B production
44+
45+
git add src
4746
4847
if git diff --cached --quiet; then
4948
echo "No changes to deploy."

0 commit comments

Comments
 (0)