26 lines
447 B
YAML
26 lines
447 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: production-runner
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Kill existing process
|
|
run: |
|
|
pkill site || true
|
|
|
|
- name: Build
|
|
run: cargo build --release
|
|
|
|
- name: Start Application
|
|
run: |
|
|
nohup ./target/release/site > server.log 2>&1 &
|