Skip to content

Update dictionary #1657

Update dictionary

Update dictionary #1657

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/[email protected]
env:
CLOUDFLARE_ZONE: ${{ secrets.CF_ZONE_ID }}
CLOUDFLARE_TOKEN: ${{ secrets.CF_AUTH_TOKEN }}
PURGE_URLS: '["https://interslavic-dictionary.com/data/*"]'