Compare commits
6 Commits
d4761dee8d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11c76d44aa | ||
|
|
84f08d4011 | ||
|
|
716f137bce | ||
|
|
8a0f206aaa | ||
| 94741c2dbb | |||
|
|
1967b07cd4 |
6
.github/workflows/railway-deploy.yml
vendored
6
.github/workflows/railway-deploy.yml
vendored
@@ -2,12 +2,13 @@ name: Deploy to Railway
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
branches: ["main"]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on:
|
||||
- host
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -33,4 +34,3 @@ jobs:
|
||||
if [ -n "${RAILWAY_SERVICE_ID:-}" ]; then SERVICE_FLAG="--service ${RAILWAY_SERVICE_ID}"; fi
|
||||
# Deploy current repo; --yes to skip prompts
|
||||
railway up $PROJECT_FLAG $SERVICE_FLAG --yes
|
||||
|
||||
|
||||
@@ -1,24 +1,16 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": [
|
||||
"./src/lib/*"
|
||||
]
|
||||
},
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
]
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
],
|
||||
"extends": "@rubriclab/config/tsconfig",
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
".next/types/**/*.ts"
|
||||
]
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./src/lib/*"]
|
||||
},
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
]
|
||||
},
|
||||
"exclude": ["node_modules"],
|
||||
"extends": "@rubriclab/config/tsconfig",
|
||||
"include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user