Skip to content

Create dependabot.yml #23

Create dependabot.yml

Create dependabot.yml #23

Workflow file for this run

name: Deploy to Railway
on:
push:
branches:
- master
jobs:
test:
uses: ./.github/workflows/test.yml
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: oven-sh/[email protected]
- name: Installing Railway
run: bash <(curl -fsSL cli.new) -y
- name: Installing dependencies
run: bun install
- name: Building project
run: bun run build
- name: Linking service
run: |
sed -i -e 's/.next/''/g' .gitignore
railway link -p $R_PROJECT_ID -s Docs
env:
RAILWAY_API_TOKEN: ${{ secrets.RAILWAY_API_TOKEN }}
R_PROJECT_ID: e7e56a6f-2023-45ee-9a1c-2eadc6204f7c
- name: Deploying service
run: railway up
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}