Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
flammie committed Jan 24, 2025
1 parent 8b55e83 commit 74b5352
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docsygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,26 @@ jobs:
cd lang && ls -l docs/mermaid-svgs
# Mermaid processing ends here

- name: get frequency list
uses: actions/download-artifact@v4
with:
name: corpus-fin.latest.freqs
repository: corpus-fin
github_token: ${{ secrets.GITHUB_TOKEN }}
path: corpusdata/

- name: use frequency list
run: |
mkdir stats/
python ${{ github.workspace }}/giella-core/scripts/freq-evals.py \
-a src/fst/analyser-gt-desc.hfstol -m stats/corpus-fin.missing \
-i ${{ github.workspace }}/corpusdata/corpus-fin.freqs
head stats/corpus-fin.missing
- name: upload missing list
uses: action/upload-artifact@v4c
with:
name: corpus-fin.missing
path: stats/corpus-fin.missing
- name: deploy gh pages
uses: peaceiris/actions-gh-pages@v4
with:
Expand Down

0 comments on commit 74b5352

Please sign in to comment.