Skip to content

Commit

Permalink
Merge pull request #3271 from tloncorp/develop
Browse files Browse the repository at this point in the history
ops: fix deploy
  • Loading branch information
arthyn authored Feb 21, 2024
2 parents ea61efb + 49f61ab commit 70bdfbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install Dependencies
run: npm ci
- working-directory: ./apps/tlon-web
run: |
npm ci
run:
npm run build
- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dev:web": "concurrently \"npm run dev:shared\" \"npm run dev-no-ssl --prefix ./apps/tlon-web\"",
"test": "npm run test --workspaces --if-present -- run -u",
"prepare": "husky",
"postinstall": "patch-package && npm run build:shared"
"postinstall": "npx patch-package && npm run build:shared"
},
"devDependencies": {
"concurrently": "^8.2.2",
Expand Down

0 comments on commit 70bdfbb

Please sign in to comment.