File tree 1 file changed +12
-13
lines changed
1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change 6
6
on :
7
7
push :
8
8
branches : ["main"]
9
- pull_request :
10
- branches : ["main"]
11
9
workflow_dispatch :
12
10
schedule :
13
11
- cron : " 0 0 18-20 6 *"
@@ -16,16 +14,17 @@ jobs:
16
14
build :
17
15
runs-on : ubuntu-latest
18
16
steps :
19
- - uses : actions/checkout@v2
20
- - uses : julia-actions/setup-julia@latest
21
- - run : |
22
- julia main.jl
17
+ - name : Github checkout
18
+ uses : actions/checkout@v2
19
+
20
+ - name : Install julia
21
+ uses : julia-actions/setup-julia@latest
23
22
24
- git config --global user. name 'gael-lopes-da-silva'
25
- git config --global user.email '[email protected] '
23
+ - name : Generate README.md
24
+ run : julia main.jl
26
25
27
- if ! git diff --quiet "README.md"; then
28
- git add "README.md"
29
- git commit -am "automated build"
30
- git push
31
- fi
26
+ - name : Commit
27
+ uses : stefanzweifel/ git-auto-commit-action@v5
28
+ with :
29
+ commit_message : Automated commit
30
+ branch : main
You can’t perform that action at this time.
0 commit comments