From 477a1792b1d781cf8e093a24e0fdb93c8a919e03 Mon Sep 17 00:00:00 2001 From: Jon Gear Date: Thu, 1 Jan 2026 11:09:11 -0800 Subject: [PATCH] fix: require build step before starting release --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f972430..39cc4b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,17 +31,18 @@ jobs: - name: Archive build artifacts run: | cd public - zip -r ../redact-check-build.zip . + zip -r ../website-build.zip . cd .. - name: Upload build artifact uses: actions/upload-artifact@v4 with: name: build-artifacts - path: redact-check-build.zip + path: website-build.zip release: runs-on: ubuntu-latest + needs: build steps: - name: Checkout uses: actions/checkout@v4