From edeb2fb9aca1257acf390111311c56bb5ade4337 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Fri, 11 Jul 2025 14:24:19 -0400 Subject: [PATCH] changed build action env vars, updated zona ref --- .build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index 8960ae2..7bfb8a7 100644 --- a/.build.yml +++ b/.build.yml @@ -8,12 +8,13 @@ environment: draft_site: draft.ficd.sh proxy: ficd.srht.site repo: ficd.sh - zonaref: git+https://git.sr.ht/~ficd/zona@b8b8fef72c741606ed1165a0c07c42cca8060176 + zona_repo: git+https://git.sr.ht/~ficd/zona + zona_ref: 0ee8094cc9c366a813d8f7938d35a9be7f7647e1 tasks: - build: | if [ "$GIT_REF" = "refs/heads/main" ]; then cd $repo - uv run --with "$zonaref" zona build --output public + uv run --with "${zona_repo}@${zona_ref}" zona build --output public else echo "Skipping build: not on main" fi @@ -21,7 +22,7 @@ tasks: - build_draft: | if [ "$GIT_REF" = "refs/heads/main" ]; then cd $repo - uv run --with "$zonaref" zona build --output public-draft --draft + uv run --with "${zona_repo}@${zona_ref}" zona build --output public-draft --draft else echo "Skipping build: not on main" fi