gbserver/.forgejo/workflows/node.yaml
Rodrigo Rodriguez (Pragmatismo) a0a84d8e91
Some checks failed
GBCI / build (push) Failing after 9s
feat: Update deployment scripts for system and desktop containers; adjust paths and configurations
2025-06-19 20:31:14 -03:00

30 lines
No EOL
619 B
YAML

name: GBCI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: gbo
steps:
- name: Disable SSL verification (temporary)
run: git config --global http.sslVerify false
- uses: actions/checkout@v4
- name: Run build
run: |
export PATH=\"\$HOME/.cargo/bin:\$PATH\"
cargo build --workspace --release --locked
- name: Deploy binary
run: |
sudo cp ./target/release/gbserver /opt/gbo/bin/system
sudo chmod +x /opt/gbo/bin/system/gbserver
sudo systemctl restart gbserver