added install script for typst
Gitea Action for checking typst compilation / run-ci-linux (push) Failing after 11s
Details
Gitea Action for checking typst compilation / run-ci-linux (push) Failing after 11s
Details
This commit is contained in:
parent
4ab95760c8
commit
5058a407ff
|
@ -1,14 +1,16 @@
|
||||||
name: Gitea Action for checking typst compilation
|
name: Gitea Action for checking typst compilation
|
||||||
run-name: ${{ gitea.actor }} is performing typst compilation
|
run-name: Performing Typst compilation
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
run-ci-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
TYPST_INSTALL: /usr/local
|
||||||
steps:
|
steps:
|
||||||
- run: echo "This job is now running on a ${{ runner.os }}"
|
- name: Check out repository code
|
||||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
uses: actions/checkout@v3
|
||||||
- uses: actions/checkout@v3
|
- name: Install Typst CLI
|
||||||
- uses: typst-community/setup-typst@v3
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh
|
||||||
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
|
- name: Run CI
|
||||||
- run: bash -c run-ci.sh
|
run: bash -c run-ci.sh
|
||||||
|
|
Loading…
Reference in New Issue