Skip to content

Update dictionaries #1785

Update dictionaries

Update dictionaries #1785

Workflow file for this run

name: Update dictionaries
on:
schedule:
# At 01:00 (UTC) every day
- cron: "0 1 * * *"
# Allow to call the workflow manually
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
# List of locales to generate
strategy:
fail-fast: false
matrix:
locale: # XXX_LOCALES
- "ca"
- "da"
- "de"
- "el"
- "en"
- "eo"
- "es"
- "fr"
- "it"
- "no"
- "pt"
- "ro"
- "ru"
- "sv"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install requirements
run: python -m pip install -r requirements.txt
- name: Download the latest Wiktionary dump
run: python -Wd -m wikidict ${{ matrix.locale }} --download
- name: Parse the dump
run: python -Wd -m wikidict ${{ matrix.locale }} --parse
- name: 📍 Render templates
run: python -Wd -m wikidict ${{ matrix.locale }} --render
- name: Convert to dictionaries
run: python -Wd -m wikidict ${{ matrix.locale }} --convert
- name: Generate the release description
run: python -Wd -m wikidict ${{ matrix.locale }} --release > release.txt
- name: Upload release data
if: github.ref == 'refs/heads/master'
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ matrix.locale }}
body_path: release.txt
files: |
data/${{ matrix.locale }}/dicthtml-${{ matrix.locale }}-${{ matrix.locale }}*.zip
data/${{ matrix.locale }}/dicthtml-${{ matrix.locale }}-${{ matrix.locale }}*.zip.sha256
data/${{ matrix.locale }}/dict-${{ matrix.locale }}-${{ matrix.locale }}*.df.bz2
data/${{ matrix.locale }}/dict-${{ matrix.locale }}-${{ matrix.locale }}*.df.bz2.sha256
data/${{ matrix.locale }}/dict-${{ matrix.locale }}-${{ matrix.locale }}*.zip
data/${{ matrix.locale }}/dict-${{ matrix.locale }}-${{ matrix.locale }}*.zip.sha256
data/${{ matrix.locale }}/dictorg-${{ matrix.locale }}-${{ matrix.locale }}*.zip
data/${{ matrix.locale }}/dictorg-${{ matrix.locale }}-${{ matrix.locale }}*.zip.sha256