Skip to content

Commit

Permalink
feat: npm run k8s:deploy:production
Browse files Browse the repository at this point in the history
  • Loading branch information
japsu committed Dec 30, 2023
1 parent cae2e6f commit 7ab5180
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ jobs:

- run: |
npm ci
cd kubernetes && ENV=production npx ts-node manifest.ts && cd ..
skaffold run -n rallly
npm run k8s:deploy:production
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"scripts": {
"k8s:generate": "cd kubernetes && ts-node manifest.ts",
"k8s:dev": "npm run k8s:generate && skaffold dev"
"k8s:dev": "npm run k8s:generate && skaffold dev",
"k8s:deploy:production": "ENV=production npm run k8s:generate && skaffold run -n rallly"
},
"devDependencies": {
"ts-node": "^10.9.2",
Expand Down

0 comments on commit 7ab5180

Please sign in to comment.