From 5378c89e1a62401d42a1dbde7a4aef066e5943ea Mon Sep 17 00:00:00 2001 From: Fergus Molloy Date: Fri, 25 Jul 2025 10:13:26 +0100 Subject: [PATCH] use rust-webapp image for release --- .gitea/workflows/release.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index b9ffab7..a2d3be1 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -7,16 +7,19 @@ on: [push] jobs: package: - runs-on: rust-nextest + runs-on: rust-webapp steps: - - run: echo "${{ GITEA_REF }}" + - run: echo ${{ GITHUB_REF_NAME }} - uses: actions/checkout@v4 - name: Create Output Directory run: mkdir package + - name: Install UI Dependencies + working-directory: ui + run: npm ci - name: Build UI working-directory: ui - run: pnpm run build + run: npm run build - name: Copy Output run: cp -rv ui/.output package/ui