Add health endpoint #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Railway | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy to Railway | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Install Railway CLI | |
- name: Install Railway CLI | |
run: | | |
bash <(curl -fsSL cli.new) | |
# Deploy to Railway | |
- name: Deploy to Railway | |
env: | |
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }} | |
CI: true | |
run: railway up --service=taille-auth |