-
-
Notifications
You must be signed in to change notification settings - Fork 4
185 lines (155 loc) · 5.22 KB
/
retype-action.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: Update Resolve Cafe Website & Publish to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
tags:
- '*'
pull_request:
types: [closed]
issues:
types: [opened, closed, labeled, unlabeled]
release:
types: [created]
jobs:
generate_markdown:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm install axios
- name: Generate Bug Tracker Markdown
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_NAME: ${{ github.repository }}
run: node .github/scripts/generate-bug-tracker.js
- name: Generate Wish List Markdown
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_NAME: ${{ github.repository }}
run: node .github/scripts/generate-wishlist.js
- name: Generate Latest News Markdown
run: node .github/scripts/generate-latest-news.js
- name: Generate FAQ Markdown
run: node .github/scripts/generate-faq.js
- name: Generate Tools Markdown
env:
PAGE_NAME: "tools"
run: node .github/scripts/generate-markdown.js
- name: Generate Plugins Markdown
env:
PAGE_NAME: "plugins"
run: node .github/scripts/generate-markdown.js
- name: Generate Fusion Templates Markdown
env:
PAGE_NAME: "fusion-templates"
run: node .github/scripts/generate-markdown.js
- name: Generate Asset Management Markdown
env:
PAGE_NAME: "asset-management"
run: node .github/scripts/generate-markdown.js
- name: Commit and push if it's necessary
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git diff --quiet && git diff --staged --quiet || (
git stash --include-untracked
git pull --rebase origin main
git stash pop
git add docs/_includes/*
git commit -m "Update Generated Markdown Files"
git push
)
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: docs
path: docs/
generate_rss:
runs-on: ubuntu-latest
needs: generate_markdown
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies
run: npm install rss markdown-it feedparser-promised deep-equal glob cheerio
- name: Generate RSS Feed
run: node .github/scripts/generate-rss.js || echo "An error occurred. See the stack trace above for more details."
- name: Commit and push if it's necessary
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git stash
git pull --rebase origin main
git stash pop
if git diff --exit-code --quiet docs/rss.xml; then
echo "No changes to commit"
else
git add docs/rss.xml
git commit -m "Update rss.xml"
git push
fi
publish:
name: Publish to retype branch
needs: [generate_markdown, generate_rss]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: docs
path: docs/
- name: Copy rss.xml to a temporary location
run: |
cp docs/rss.xml /tmp/rss.xml
- name: Build and publish using Retype
uses: retypeapp/action-build@latest
with:
license: ${{ secrets.RETYPE_SECRET }}
- name: Push to retype branch
uses: retypeapp/action-github-pages@latest
with:
update-branch: true
- name: Checkout retype branch
uses: actions/checkout@v3
with:
ref: retype
- name: Pull latest changes from retype branch
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git pull origin retype
- name: Copy rss.xml from the temporary location to retype branch
run: |
cp /tmp/rss.xml ./rss.xml
- name: Commit and push if it's necessary
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add rss.xml
if git diff --exit-code --staged; then
echo "No changes to commit"
else
git commit -m "Update rss.xml"
git push
fi
- name: Purge CloudFlare cache
run: |
curl -X POST "https://api.cloudflare.com/client/v4/zones/${{ secrets.CLOUDFLARE_ZONE_ID }}/purge_cache" \
-H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}" \
-H "Content-Type: application/json" \
--data '{"purge_everything":true}'