Switch to datastar-pro and stop tracking downloaded libs
All checks were successful
CI / Deploy / test (pull_request) Successful in 20s
CI / Deploy / lint (pull_request) Successful in 34s
CI / Deploy / deploy (pull_request) Has been skipped

Datastar-pro is fetched from a private Gitea repo (ryan/vendor-libs)
using VENDOR_TOKEN for CI/Docker builds, with a local fallback from
../optional/ for development. DaisyUI is pinned to v5.5.19 instead of
tracking latest. Downloaded files are now gitignored and fetched at
build time via 'task download', which is a dependency of both build
and live tasks.
This commit is contained in:
Ryan Hamamura
2026-03-11 11:33:38 -10:00
parent 8789c5414e
commit f4d5a52cf9
14 changed files with 274 additions and 1165 deletions

View File

@@ -61,11 +61,13 @@ jobs:
mkdir -p $DEPLOY_DIR/data
- name: Rebuild and restart
env:
VENDOR_TOKEN: ${{ secrets.VENDOR_TOKEN }}
run: |
cd $DEPLOY_DIR
VERSION=$(git describe --tags --always)
COMMIT=$(git rev-parse --short HEAD)
VERSION=$VERSION COMMIT=$COMMIT docker compose up -d --build --remove-orphans
VERSION=$VERSION COMMIT=$COMMIT VENDOR_TOKEN=$VENDOR_TOKEN docker compose up -d --build --remove-orphans
- name: Prune unused images
run: docker image prune -f