-
Notifications
You must be signed in to change notification settings - Fork 17
36 lines (32 loc) · 1014 Bytes
/
update-dictionary.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
name: Update dictionary
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update-dictionary:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
ref: master
- name: NPM install
run: npm ci
- name: Build
run: |
npm run generate-dictionary
npm run build
- name: Publish to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CF_AUTH_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
command: pages deploy ./dist --project-name=${{ secrets.CF_PROJECT_NAME }} --branch=main
- name: Purge cache on Cloudflare
uses: jakejarvis/cloudflare-purge-action@v0.3.0
env:
CLOUDFLARE_ZONE: ${{ secrets.CF_ZONE_ID }}
CLOUDFLARE_TOKEN: ${{ secrets.CF_AUTH_TOKEN }}
PURGE_URLS: '["https://interslavic-dictionary.com/data/*"]'