Files
Runner-Bridge/.gitea/workflows/deploy.yml
2026-03-03 11:40:49 -05:00

20 lines
498 B
YAML

name: Deploy Runner-Bridge Application
run-name: ${{gitea.actor}} is deploying Runner-Bridge Application 🚀
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Railway CLI
run: npm i -g @railway/cli
- name: Deploy to Railway
run: railway up --ci --service "runner-bridge" --path .
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}