From ffdaf06d55b4a37ec836b451bc39364228c3ed00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Sun, 27 Jul 2025 18:35:27 -0300 Subject: [PATCH] better now --- .gitea/workflows/main.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 45ce7ab..fa99440 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -2,14 +2,14 @@ name: Check scripts syntax on: [push] jobs: - build: + build-release: runs-on: ubuntu-latest steps: - name: Check out repository code uses: actions/checkout@v4 - - name: List files in the repository + - name: Setup zip run: | - ls ${{ gitea.workspace }} + sudo apt-get install zip -y - name: Install JS dependencies run: | npm install @@ -19,8 +19,11 @@ jobs: - name: Run build run: | npm run build + zip -r vision-start.zip dist - name: Release zip uses: akkuman/gitea-release-action@v1 with: + name: latest + tag_name: latest files: |- - dist/** + vision-start.zip