Build and Deploy to Pages #48
This file contains hidden or 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
| # Simple workflow for deploying static content to GitHub Pages | |
| # adapted from https://github.com/actions/starter-workflows/blob/main/pages/static.yml | |
| name: Build and Deploy to Pages | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: [master] | |
| # Every day at 2:47am (in case Patreon list changes) | |
| schedule: | |
| - cron: "47 2 * * *" | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| # Single deploy job since we're just deploying | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4.1.7 | |
| - name: apt installs | |
| run: sudo apt update && sudo apt install -y texlive-latex-extra texlive-lang-cyrillic ghostscript | |
| - uses: actions/setup-python@v5.1.0 | |
| with: | |
| python-version: '3.10' | |
| - name: pip installs | |
| run: pip install -r requirements.txt | |
| - name: Build English | |
| run: make html | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Check for spelling errors | |
| id: check_files | |
| uses: andstor/file-existence-action@v3 | |
| with: | |
| files: "_spelling/content/*.spelling" | |
| - name: Fail if spelling errors | |
| if: steps.check_files.outputs.files_exists == 'true' | |
| run: cat _spelling/content/* && exit 1 | |
| - name: Zip just English version for Release | |
| uses: montudor/action-zip@v1 | |
| with: | |
| args: zip -qq -r html.zip ./_build | |
| - name: Build Dutch | |
| run: make html-nl | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Build French | |
| run: make html-fr | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Build Ukraine | |
| run: make html-ukraine | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Build Chinese | |
| run: make html-zh | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Build Spanish | |
| run: make html-es | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Build Japanese | |
| run: make html-ja | |
| env: | |
| CREATOR_ID: ${{ secrets.CREATOR_ID }} | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3.0.1 | |
| with: | |
| path: './_build' | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4.0.5 | |
| - name: Get current date | |
| id: date | |
| run: echo "::set-output name=date::$(date +'%Y-%m-%d')" && echo "::set-output name=day::$(date +'%d')" | |
| - name: Create Release with zip file only on first day of each month | |
| uses: softprops/action-gh-release@v1 | |
| if: ${{ steps.date.outputs.day == '01' }} | |
| with: | |
| files: html.zip | |
| tag_name: ${{ steps.date.outputs.date }} |