Update typst.yml #5
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
# Compiles Typst into a PDF and publishes it automatically | |
name: Compile Typst | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Typst | |
uses: typst-community/[email protected] | |
- name: Compile to PDF | |
run: typst compile main.typ "A Practical Guide to Protein Redesign.pdf" | |
- name: Generate Release Tag | |
id: generate_release_tag | |
uses: amitsingh-007/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tag_prefix: 'v' | |
tag_template: 'yyyy.mm.dd.i' | |
- name: Publish PDFs in Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ steps.generate_release_tag.outputs.next_release_tag }} | |
files: "*.pdf" |