mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
Some checks are pending
tinymist::auto_tag / auto-tag (push) Waiting to run
tinymist::ci / Duplicate Actions Detection (push) Waiting to run
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Waiting to run
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Waiting to run
tinymist::ci / prepare-build (push) Waiting to run
tinymist::ci / announce (push) Blocked by required conditions
tinymist::ci / build (push) Blocked by required conditions
tinymist::gh_pages / build-gh-pages (push) Waiting to run
96 lines
3.6 KiB
YAML
96 lines
3.6 KiB
YAML
|
|
name: tinymist::build::vsc_assets
|
|
on:
|
|
workflow_call:
|
|
|
|
env:
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
cache: 'yarn'
|
|
- name: Install deps
|
|
run: yarn install
|
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
- name: Download tinymist binary artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: artifacts-build-local-${{ env.target }}
|
|
path: prebuilts
|
|
- name: Unzip tinymist binary artifact (Windows)
|
|
run: 7z x -y -oprebuilts prebuilts/tinymist-${{ env.target }}.zip
|
|
if: contains(env.target, 'windows')
|
|
- name: Unzip tinymist binary artifact (Linux)
|
|
run: |
|
|
tar -xvf prebuilts/tinymist-${{ env.target }}.tar.gz -C prebuilts
|
|
mv prebuilts/tinymist-${{ env.target }}/tinymist prebuilts/tinymist
|
|
if: ${{ !contains(env.target, 'windows') }}
|
|
- name: Download font assets
|
|
# use fonts in stable releases
|
|
run: |
|
|
mkdir -p assets/fonts/
|
|
curl -L https://github.com/Myriad-Dreamin/shiroa/releases/download/v0.1.2/font-assets.tar.gz | tar -xvz -C assets/fonts
|
|
curl -L https://github.com/Myriad-Dreamin/shiroa/releases/download/v0.1.0/charter-font-assets.tar.gz | tar -xvz -C assets/fonts
|
|
curl -L https://github.com/Myriad-Dreamin/shiroa/releases/download/v0.1.5/source-han-serif-font-assets.tar.gz | tar -xvz -C assets/fonts
|
|
- name: Download & install shiroa
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Myriad-Dreamin/shiroa/releases/download/v0.3.1-rc3/shiroa-installer.sh | sh
|
|
- name: Build Book
|
|
run: |
|
|
shiroa build --font-path ./assets/typst-fonts/ --font-path ./assets/fonts/ --path-to-root /tinymist/ -w . docs/tinymist --mode=static-html
|
|
- name: Build PDF Documentation
|
|
run: |
|
|
prebuilts/tinymist compile --font-path assets/fonts --root . docs/tinymist/ebook.typ tinymist-docs.pdf
|
|
# todo: this is a bug
|
|
- name: Install PDF Documentation
|
|
run: |
|
|
mkdir -p editors/vscode/out/ contrib/html/editors/vscode/out/
|
|
cp tinymist-docs.pdf editors/vscode/out/tinymist-docs.pdf
|
|
cp tinymist-docs.pdf contrib/html/editors/vscode/out/tinymist-docs.pdf
|
|
- name: Upload PDF Documentation
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: tinymist-docs.pdf
|
|
path: tinymist-docs.pdf
|
|
if-no-files-found: error
|
|
|
|
- name: Build typst-preview vscode extension
|
|
run: |
|
|
yarn
|
|
yarn run compile
|
|
working-directory: ./contrib/typst-preview/editors/vscode
|
|
- name: Build tinymist vscode extension
|
|
run: |
|
|
yarn
|
|
yarn run compile
|
|
working-directory: ./editors/vscode
|
|
|
|
- name: Pre-bundle tinymist vscode extension
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: vscode-artifacts-tinymist
|
|
path: editors/vscode/out
|
|
- name: Pre-bundle tinymist vscode extension (L10n)
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: vscode-artifacts-tinymist-l10n
|
|
path: |
|
|
editors/vscode/l10n/**/*
|
|
editors/vscode/package.nls.json
|
|
editors/vscode/package.nls.*.json
|
|
- name: Pre-bundle typst-preview vscode extension
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: vscode-artifacts-typst-preview
|
|
path: contrib/typst-preview/editors/vscode/out
|
|
|