We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb022d8 commit 641f05fCopy full SHA for 641f05f
.github/workflows/generate-page-docs.yml
@@ -1,8 +1,9 @@
1
name: Generate page docs
2
3
-on:
4
- push:
5
- branches: ["main"]
+on: push
+
+permissions:
6
+ contents: write
7
8
jobs:
9
build:
@@ -32,6 +33,15 @@ jobs:
32
33
sleep 1
34
done
35
36
+ - uses: actions/checkout@v3
37
+ - run: |
38
+ date > generated.txt
39
+ git config user.name github-actions
40
+ git config user.email github-actions@github.com
41
+ git add docs/index.html
42
+ git commit -m "generated"
43
+ git push
44
45
- name: Commit files
46
run: |
47
git config --local user.email "fast.code.auth@gmail.com"
0 commit comments