Skip to content

docs: Symlink katex header in individual crates #11

docs: Symlink katex header in individual crates

docs: Symlink katex header in individual crates #11

Workflow file for this run

name: Deploy Crates
on:
push:
# TODO: remove branches
branches: ["*"]
tags:
- "*"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Nushell
uses: hustcer/[email protected]
with:
version: 0.93.0
- name: Bump versions
shell: nu {0}
run: |
do { cd crates; nu bump-versions.nu }
- name: Publish crates
shell: nu {0}
run: |
open crates/release.json | each {|p| cargo publish -p $p --allow-dirty }
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}