Skip to content

Commit d51c0ef

Browse files
committed
fix deploy workflow
1 parent f8beeea commit d51c0ef

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/deploy.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: deploy
22
on: workflow_dispatch
3+
permissions:
4+
contents: write
35
jobs:
46
build:
57
runs-on: ubuntu-latest
68
steps:
79
- name: checkout repo
810
uses: actions/checkout@v3
11+
- run: |
12+
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
13+
git config --global user.name "${GITHUB_ACTOR}"
914
- name: use node.js
1015
uses: actions/setup-node@v3
1116
with:

0 commit comments

Comments
 (0)