Compare commits
1 Commits
main
...
d4761dee8d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d4761dee8d |
6
.github/workflows/railway-deploy.yml
vendored
6
.github/workflows/railway-deploy.yml
vendored
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user