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