From d2038c0889e337c04d33ad23c83b4baf5c3020c6 Mon Sep 17 00:00:00 2001 From: guangenZhao Date: Fri, 13 Mar 2026 18:26:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0gitea=E6=89=93=E5=8C=85workfl?= =?UTF-8?q?ow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..f6dc803 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,28 @@ +name: Build Portal + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Show versions + run: | + node -v + npm -v + + - name: Install dependencies + run: npm install + + - name: Build project + run: npm run build + + - name: List dist files + run: ls -la dist \ No newline at end of file