-
Notifications
You must be signed in to change notification settings - Fork 41
113 lines (91 loc) · 3.16 KB
/
build-and-deploy.yml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Simple workflow for deploying static content to GitHub Pages
# adapted from https://github.com/actions/starter-workflows/blob/main/pages/static.yml
name: Build and Deploy to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: [master]
# Every day at 2:47am (in case Patreon list changes)
schedule:
- cron: "47 2 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/[email protected]
- name: apt installs
run: sudo apt update && sudo apt install -y texlive-latex-extra texlive-lang-cyrillic ghostscript
- uses: actions/[email protected]
with:
python-version: '3.10'
- name: pip installs
run: pip install -r requirements.txt
- name: Build English
run: make html
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Check for spelling errors
id: check_files
uses: andstor/file-existence-action@v3
with:
files: "_spelling/content/*.spelling"
- name: Fail if spelling errors
if: steps.check_files.outputs.files_exists == 'true'
run: cat _spelling/content/* && exit 1
- name: Zip just English version for Release
uses: montudor/action-zip@v1
with:
args: zip -qq -r html.zip ./_build
- name: Build Dutch
run: make html-nl
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build French
run: make html-fr
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Ukraine
run: make html-ukraine
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Chinese
run: make html-zh
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Build Spanish
run: make html-es
env:
CREATOR_ID: ${{ secrets.CREATOR_ID }}
- name: Upload artifact
uses: actions/[email protected]
with:
path: './_build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" && echo "::set-output name=day::$(date +'%d')"
- name: Create Release with zip file only on first day of each month
uses: softprops/action-gh-release@v1
if: ${{ steps.date.outputs.day == '01' }}
with:
files: html.zip
tag_name: ${{ steps.date.outputs.date }}