We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e003527 commit 351e8efCopy full SHA for 351e8ef
1 file changed
.github/workflows/deploy.yml
@@ -6,9 +6,21 @@ on:
6
- main
7
8
jobs:
9
- run-sst:
+ run-vercel:
10
runs-on: ubuntu-latest
11
12
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
25
- name: Vercel Deploy
26
run: npx vercel deploy --yes --token=${{ secrets.VERCEL_TOKEN }} --prod --scope=rocicorp
0 commit comments