We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3a1d89d + 062bf5d commit b829028Copy full SHA for b829028
.github/workflows/compile-docs.yml
@@ -9,13 +9,16 @@ on:
9
- 'src/**'
10
- 'cli.ts'
11
12
+permissions:
13
+ contents: write
14
+
15
jobs:
16
compile:
17
runs-on: ubuntu-latest
18
19
steps:
20
- name: Checkout code
- uses: actions/checkout@v3
21
+ uses: actions/checkout@v4
22
23
- name: Setup Bun
24
uses: oven-sh/setup-bun@v2
@@ -30,6 +33,8 @@ jobs:
30
33
run: bun run cli.ts docs/main.xiv -o docs/index.html
31
34
32
35
- name: Commit and push if changed
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
run: |
39
git config --global user.name 'github-actions[bot]'
40
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
0 commit comments