Add support for externalised sorting per language #2491
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request, workflow_dispatch] | |
name: Build and Deploy Glossary Website | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y build-essential libicu-dev | |
python -m pip install --upgrade pip | |
pip install pycld2 pyicu-binary | |
- name: Build glossary data files and site | |
run: make gh-site | |
- name: Remove _data from .gitignore | |
run: "grep -v '_data' .gitignore > tmpfile && mv tmpfile .gitignore" | |
- name: Inspect content of folder | |
run: ls -alh _gh-site && ls -alh _gh-site/_data && ls -alh _gh-site/_data/en | |
- name: Deploy to site | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'carpentries/glosario' }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: site | |
folder: _gh-site | |
token: ${{ secrets.GITHUB_TOKEN }} |