Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 894 Bytes

File metadata and controls

35 lines (29 loc) · 894 Bytes

Setup Tytanic

This action provides the Tytanic CLI to subsequent steps in GitHub Actions.

- uses: typst-community/setup-tytanic@v1
- run: tt run

Usage

Basic usage

name: Build GitHub-Pages
on: push
jobs:
  build-docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: typst-community/setup-tytanic@v1
        with:
          tytanic-version: 0.3.0
      - run: tt run

Inputs & Outputs

See action.yml for a the inputs and outputs of this action.

Contributions

A contribution guide can be found here. You can view the changelog of previous contributions and release here.

Credit

This action is in large part inspired by setup-typst.