add exercise on U(n) isomorphic to Aut(Z_n) #32
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
name: Build PDF | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup LaTeX environment | |
uses: xu-cheng/texlive-action@v2 | |
with: | |
scheme: full | |
run: | | |
apk add make | |
- name: Build PDF documents | |
uses: xu-cheng/texlive-action@v2 | |
with: | |
scheme: full | |
run: | | |
make build | |
- name: Upload PDF artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PDFs | |
path: output/ | |
- name: Upload main book | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Book | |
path: output/main.pdf | |
- name: Build GitHub Pages | |
run: make build-gh-page | |
- name: Upload GitHub Pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
name: github-pages | |
path: gh-pages | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |