diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5915712..6dec123 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,4 +9,18 @@ jobs: - uses: oven-sh/setup-bun@v2 - name: Install dependencies run: bun i - - run: bun run check \ No newline at end of file + - run: bun run check + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - name: Install dependencies + run: bun i + - run: bun run build + - name: Upload build artifact + uses: actions/upload-artifact@v3 + with: + name: dist + path: dist/ \ No newline at end of file