Skip to content

docs: add toc, logo

docs: add toc, logo #1

Workflow file for this run

---
name: Release a tag
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
lfs: true
- name: Fetch and checkout LFS objects
run: |
git lfs fetch --all
git lfs checkout
- uses: jdx/mise-action@v3
with:
install: true
- name: release tag
run: mise run release
env:
RELEASE_VERSION: ${{ github.ref_name }}