Files
benboerba-portal/.gitea/workflows/build.yml
guangenZhao d2038c0889
Some checks failed
Build Portal / build (push) Failing after 1m55s
添加gitea打包workflow
2026-03-13 18:26:39 +08:00

28 lines
422 B
YAML

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