Add some CI, let's see how badly this explodes
Badgey Deployment / build (push) Failing after 42s
Details
Badgey Deployment / build (push) Failing after 42s
Details
This commit is contained in:
parent
7504be2173
commit
92aa0f798d
|
|
@ -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
|
||||||
Loading…
Reference in New Issue