English | ç®€ä½“ä¸æ–‡
This action provides the following functionality for GitHub Actions users:
- Installing a version of Typst and adding it to the PATH
- Caching packages dependencies
- Downloading ZIP archive as local packages
- uses: typst-community/setup-typst@v4
- run: typst compile paper.typ paper.pdf
name: Render paper.pdf
on: push
jobs:
render-paper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: typst-community/setup-typst@v4
# 🎉 Now Typst is installed!
- run: typst compile paper.typ paper.pdf
typst-version
: Version range or exact version of Typst to use, using SemVer's version range syntax. Uses the latest version if unset.allow-prereleases
: Whentrue
, a version range includinglatest
passed totypst-version
input will match prerelease versions.
# Example 1
- uses: typst-community/setup-typst@v4
with:
typst-version: ^0.13.0
# Example 2
- uses: typst-community/setup-typst@v4
with:
typst-version: 0.13.0-rc1
allow-prereleases: true
cache-dependency-path
: Used to specify the path to a Typst file containing lines of import
keyword.
# Example workflow YAML file
- uses: typst-community/setup-typst@v4
with:
cache-dependency-path: requirements.typ
// Example Typst file (requirements.typ)
#import "@preview/example:0.1.0": *
local-packages
: Used to specify the path to a JSON file containing names and ZIP archive URLs of packages as local packages under the local
key.
# Example workflow YAML file
- uses: typst-community/setup-typst@v4
with:
local-packages: packages.json
// Example JSON file (packages.js)
{
"local": {
"glossarium": "https://github.com/typst-community/glossarium/archive/refs/tags/v0.5.4.zip",
"touying": "https://github.com/touying-typ/touying/archive/refs/tags/0.6.1.zip"
}
}
token
: The token used to authenticate when fetching Typst distributions from typst/typst. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
typst-version
: The installed Typst version. Useful when given a version range as input.cache-hit
: A boolean value to indicate a cache entry was found.
- uses: typst-community/setup-typst@v4
- run: typst compile paper.typ paper.pdf
- uses: actions/upload-artifact@v4
with:
name: paper
path: paper.pdf
If your tasks require extending beyond the set of fonts in GitHub Actions runner, you can employ the Fontist to facilitate custom font installations. Here's an example showcasing how to use fontist/setup-fontist to add new fonts:
- uses: fontist/setup-fontist@v2
- run: fontist install "Fira Code"
- uses: typst-community/setup-typst@v4
- run: typst compile paper.typ paper.pdf --font-path ~/.fontist/fonts