blob: f5302b0c2d83d469dac8252a9c4fd21b100fcef3 (
plain) (
blame)
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
|
name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make build/docker
- name: Publish as artifact
uses: actions/upload-artifact@v3
with:
name: cv
path: cv/cv.pdf
if-no-files-found: error
- name: Clean up
run: sudo make clean
- name: Publish to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: cv
single-commit: true
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
- name: Set up ssh-agent
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: '${{ secrets.REMOTE_SSH_KEY }}'
- name: Deploy
run: make deploy
env:
REMOTE_USER: '${{ secrets.REMOTE_USER }}'
REMOTE_HOST: '${{ secrets.REMOTE_HOST }}'
REMOTE_PORT: '${{ secrets.REMOTE_PORT }}'
REMOTE_DIR: '${{ secrets.REMOTE_DIR }}'
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|