From 92aa0f798ddaa856790cbdab7d17af55df356ae2 Mon Sep 17 00:00:00 2001 From: Xyon Date: Mon, 25 Sep 2023 14:21:33 +0100 Subject: [PATCH] Add some CI, let's see how badly this explodes --- .gitea/workflows/deploy.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..4aa27c6 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,17 @@ +name: Badgey Deployment +run-name: Deploy to prod +on: + push: + branches: + - main + +jobs: + build: + runs-on: rust + steps: + - name: Checkout + uses: actions/checkout/v3 + - name: Build (Release) + run: cargo build --release + - name: Deploy + run: bash cicd/deploy.sh