Add bridge code to the project

This commit is contained in:
2026-03-03 10:29:49 -05:00
parent 0b9b1c38d6
commit 2e779df78a
6 changed files with 2088 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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
uses: npm i -g @railway/cli
- name: Deploy to Railway
uses: railway up --ci --service runner-bridge
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}