Compare commits

..

1 Commits

Author SHA1 Message Date
tedspare
d4761dee8d Resolve merge conflix
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 16:26:18 -05:00
2 changed files with 25 additions and 17 deletions

View File

@@ -2,13 +2,12 @@ name: Deploy to Railway
on: on:
push: push:
branches: ["main"] branches: [ "main" ]
workflow_dispatch: workflow_dispatch:
jobs: jobs:
deploy: deploy:
runs-on: runs-on: ubuntu-latest
- host
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -34,3 +33,4 @@ jobs:
if [ -n "${RAILWAY_SERVICE_ID:-}" ]; then SERVICE_FLAG="--service ${RAILWAY_SERVICE_ID}"; fi if [ -n "${RAILWAY_SERVICE_ID:-}" ]; then SERVICE_FLAG="--service ${RAILWAY_SERVICE_ID}"; fi
# Deploy current repo; --yes to skip prompts # Deploy current repo; --yes to skip prompts
railway up $PROJECT_FLAG $SERVICE_FLAG --yes railway up $PROJECT_FLAG $SERVICE_FLAG --yes

View File

@@ -1,16 +1,24 @@
{ {
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"~/*": ["./src/lib/*"] "~/*": [
}, "./src/lib/*"
"plugins": [ ]
{ },
"name": "next" "plugins": [
} {
] "name": "next"
}, }
"exclude": ["node_modules"], ]
"extends": "@rubriclab/config/tsconfig", },
"include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"] "exclude": [
"node_modules"
],
"extends": "@rubriclab/config/tsconfig",
"include": [
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
]
} }