blob: 8f3ce84b9fda05d77b0fdea59592f5f6f866401a (
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
|
name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
docker-compose build
docker-compose up
- name: PDF as artifact
uses: actions/upload-artifact@v2
with:
name: Egor_Tensin_CV_en
path: cv/cv.pdf
- name: Clean up auxiliary files
run: sudo find cv/ '!' -name cv.pdf -type f -delete
- name: PDF to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: cv
single-commit: 1
if: github.ref == 'refs/heads/master'
|