diff --git a/.gitea/workflows/deploy-api.yaml b/.gitea/workflows/deploy-api.yaml new file mode 100644 index 0000000..bcaccdb --- /dev/null +++ b/.gitea/workflows/deploy-api.yaml @@ -0,0 +1,16 @@ +name: Deploy API + +jobs: + Build-Api: + runs-on: rainbow-1 + steps: + - name: Check out repo + uses: actions/checkout@v7 + - run: cd packages/api + - run: pnpm install --prod + - run: tsc -p . + - name: Publish Artifact + uses: actions/upload-artifact@v7 + with: + path: ./dist + retention-days: 2S