UI overhaul rebase

This commit is contained in:
2026-01-28 20:42:47 +01:00
parent af095684a1
commit 7ecf0f10e8
55 changed files with 323294 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
name: Cargo Publish
on:
release:
types: [published]
env:
CARGO_TERM_COLOR: always
jobs:
publish:
name: Publish to crate.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo publish
working-directory: ./packages/lib
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}