From bd36faa03372898260e038b8b62e10e07b5b5153 Mon Sep 17 00:00:00 2001 From: toni Date: Tue, 15 Sep 2026 01:32:19 +0200 Subject: [PATCH] add action --- .gitea/workflows/deploy-api.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/deploy-api.yaml 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