From 668ac7fa8862aacfbc0fc15de08181c6448c9a66 Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Thu, 22 Jan 2026 16:40:20 +0000 Subject: [PATCH] ci: publish remote UI on main --- .github/workflows/release-ui.yml | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/release-ui.yml diff --git a/.github/workflows/release-ui.yml b/.github/workflows/release-ui.yml new file mode 100644 index 00000000..c13785ab --- /dev/null +++ b/.github/workflows/release-ui.yml @@ -0,0 +1,43 @@ +on: + push: + branches: + - main + workflow_dispatch: {} + +permissions: + contents: read + +env: + NODE_VERSION: 20 + +jobs: + release-ui: + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-24.04 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODE_VERSION }} + cache: npm + + - name: Install dependencies + run: npm ci --workspaces --include=optional + + - name: Install Cloudflare worker deps + run: npm ci + working-directory: packages/cloudflare + + - name: Build UI + run: npm run build --workspace @codenomad/ui + + - name: Publish UI zip + update manifest + working-directory: packages/cloudflare + env: + CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} + CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + CODENOMAD_R2_BUCKET: ${{ vars.CODENOMAD_R2_BUCKET }} + run: npm run release:ui