Files
Runner-Bridge/.gitea/workflows/deploy.yml
Workflow config file is invalid. Please check your config file: yaml: line 22: could not find expected ':'
2026-03-03 19:57:24 +00:00

32 lines
925 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: railway --version
# # Manually add the npm global bin to the PATH
# export PATH=$(npm prefix -g)/bin:$PATH
# railway --version
- name: Check Token Presence
run: if [ -z "$RAILWAY_TOKEN" ]; then echo "TOKEN IS MISSING"; exit 1; fi
env:4
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}
- name: Deploy to Railway
# Added --verbose to see the real error
run: |
npm install @railway/cli
npx railway up --ci --service "runner-bridge" --verbose
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}