-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 1.09 KB
/
sgrud-pages.yml
File metadata and controls
45 lines (39 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: SGRUD Pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
thesis:
name: Thesis
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
path: ./source
- name: Checkout target
uses: actions/checkout@v3
with:
path: ./target
repository: sgrud/sgrud.github.io
ssh-key: ${{secrets.PAGES_DEPLOY_KEY}}
- name: Build source
working-directory: ./source
run: |
mkdir ./thesis
docker compose up --no-log-prefix
cp ./dist/thesis.pdf ./README.md ./thesis
- name: Stage target
working-directory: ./source
run: |
git --git-dir ../target/.git add -Af ./thesis
- name: Push target
working-directory: ./target
run: |
git diff --cached --quiet && exit
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git commit -m ${{github.repository}}@${{github.sha}}
git push