fixed gitea action
Some checks failed
Build and Test / build (pull_request) Has been cancelled

This commit is contained in:
2026-01-31 15:45:58 -05:00
parent ce4d8723ef
commit aa12cbba3f

View File

@@ -8,12 +8,18 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: production-runner
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
- name: Run Application
run: cargo run --release
- name: Kill existing process
run: |
pkill site || true
- name: Upload artifacts
uses: actions/upload-artifact@v4
- name: Build
run: cargo build --release
- name: Start Application
run: |
nohup ./target/release/site > server.log 2>&1 &