We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa4aa59 commit ac125a9Copy full SHA for ac125a9
.github/workflows/make.yml
@@ -1,23 +1,17 @@
1
-name: Build
2
-
3
-on:
4
- push:
5
- branches:
6
- - "**"
7
- pull_request:
8
+name: Build & commit
+on: push
+permissions:
+ contents: write
9
jobs:
10
- make:
+ report:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - name: Checkout repository
15
- uses: actions/checkout@v4
16
17
- - name: Install dependencies
+ - uses: actions/checkout@v3
+ - name: Make docs
+ run: make all
+ - name: Commit files
18
run: |
19
- sudo apt update
20
- sudo apt install -y pandoc make
21
22
- - name: Run make
23
- run: make
+ git config --global user.name 'dde-fite's github action'
+ git config --global user.email 'dde-fite@users.noreply.github.com'
+ git commit -am "Make pandoc"
+ git push
0 commit comments