From e48afc1906e2923945267acf09fd433488986846 Mon Sep 17 00:00:00 2001 From: guizmo Date: Mon, 12 Feb 2024 22:59:42 +0100 Subject: [PATCH] Add deploy github action --- .github/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 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..f259b48 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: test + +on: + push: + branches: + - 'main' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + - run: bun install + - run: bun run deploy \ No newline at end of file