Skip to content

Commit 351e8ef

Browse files
authored
fix: vercel deploy (#53)
1 parent e003527 commit 351e8ef

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,21 @@ on:
66
- main
77

88
jobs:
9-
run-sst:
9+
run-vercel:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13+
- name: Checkout repo
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
cache: "npm"
21+
22+
- name: Install dependencies
23+
run: npm install
24+
1325
- name: Vercel Deploy
1426
run: npx vercel deploy --yes --token=${{ secrets.VERCEL_TOKEN }} --prod --scope=rocicorp

0 commit comments

Comments
 (0)