From 83dcf650694eef4dc045ea717b062e72bc9b0f42 Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Fri, 3 Jul 2026 14:12:05 -0300 Subject: [PATCH] adding package build to pipeline --- .gitea/workflows/main.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 58f2d22..48e3c90 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -25,6 +25,18 @@ jobs: - name: Run build run: npm run build + - name: Package dist as zip + run: | + cd dist + zip -r ../vision-start-build.zip . + + - name: Upload build artifact + uses: actions/upload-artifact@v3 + with: + name: vision-start-build + path: vision-start-build.zip + retention-days: 30 + build_vision_start: name: Build Vision Start Image runs-on: ubuntu-amd64