added: environment variable to set explicit typst version in CI
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 11s
Details
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 11s
Details
Refs: #12
This commit is contained in:
parent
b9a8d22bcf
commit
ed9a5beac5
|
@ -7,10 +7,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
TYPST_INSTALL: /usr/local
|
TYPST_INSTALL: /usr/local
|
||||||
|
TYPST_VERSION: 0.11.1
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Install Typst CLI
|
- name: Install Typst CLI
|
||||||
run: curl -fsSL https://typst.community/typst-install/install.sh | sh
|
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
|
||||||
- name: Run CI
|
- name: Run CI
|
||||||
run: bash -c ./run-ci.sh
|
run: bash -c ./run-ci.sh
|
||||||
|
|
Loading…
Reference in New Issue