From 5aa618d9e40226fb2c1f79bafb5164951ce1f26a Mon Sep 17 00:00:00 2001 From: Theis Date: Thu, 8 Aug 2024 17:31:52 +0200 Subject: [PATCH] ci: add tailwin npm build step to release --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19cf664..088dc02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,10 @@ jobs: - name: Run tests working-directory: src run: CI=true go test ./... + - name: Build tailwindcss + uses: actions/setup-node@v4 + - run: | + cd src/tailwind && npm install && npm run build - name: Build working-directory: src run: |