-
Notifications
You must be signed in to change notification settings - Fork 51
66 lines (54 loc) · 1.9 KB
/
publish.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
---
on:
push:
branches: master
jobs:
publish:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
deployments: write
name: Publish to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check for missing base language strings
run: python3 find_missing_i18n_strings.py
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
# extended: true
- name: Generate language files
run: python3 setup-pages-for-supported-languages.py
- name: Create Pull Request for i18n string changes
uses: peter-evans/create-pull-request@v5
with:
add-paths: i18n/en.json
title: Automagic i18n string updates
commit-message: Automagic i18n string updates
branch-suffix: short-commit-hash
delete-branch: true
body: |
Changes generated by find_missing_i18n_strings.py
OP#217
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
- name: Build
run: hugo --minify
# this is needed to trick CF into deploying to production
# can probably be removed where there is a solution to
# https://github.com/cloudflare/pages-action/issues/63
- name: remove git dir
run: rm -rf .git
- name: move redirects file into place
run: cp _redirects public/
- name: build search index
run: npx pagefind --site "public"
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ vars.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }}
directory: public