From 963ea5aa9f8d9487d205bee7535479f659239c16 Mon Sep 17 00:00:00 2001 From: RobertAKARobin Date: Fri, 2 Feb 2024 10:10:18 -0600 Subject: [PATCH] Add action --- .github/workflows/deploy.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..5eb388e --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,16 @@ +name: Deploy + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup node + uses: actions/setup-node@v3 + - run: ENV=PROD tsx ./build.ts