-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (61 loc) · 2.27 KB
/
main.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
name: Update CV, Build, Deploy
on:
push:
branches: [main, master]
repository_dispatch:
types: [build-cv]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.client_payload.ref }}
- run: echo ${{ github.event.client_payload.sha }}
- name: Install system dependencies
run: |
sudo apt-get -qqy update --fix-missing
sudo apt-get install libcurl4-openssl-dev
- name: Install/Setup R
uses: r-lib/actions/setup-r@v2
- name: Setup Pandoc
uses: r-lib/actions/setup-pandoc@v2
- run: echo "# Test" | pandoc -t html
- name: Setup TinyTex
uses: r-lib/actions/setup-tinytex@v2
- run: tlmgr --version
- name: Install/Setup R packages
uses: r-lib/actions/setup-renv@v2
with:
cache-version: 2
- name: Grab CV
run: |
wget https://github.com/mikecuoco/curriculum-vitae/raw/master/main.pdf && mv main.pdf cv.pdf
- name: Render Rmarkdown
run: |
Rscript -e "rmarkdown::render('index.Rmd')"
- name: Commit results
run: |
git config --global user.email "[email protected]"
git config --global user.name "mikecuoco"
git add cv.pdf index.html || echo "No changes to add"
git commit -m 'Add updated CV to website' || echo "No changes to commit"
git push origin || echo "No changes to commit"
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: '.'
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: false
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1