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 aa72bd9 commit 0f68cadCopy full SHA for 0f68cad
1 file changed
.github/workflows/deploy-canary.yml
@@ -5,6 +5,10 @@ on:
5
permissions:
6
contents: read
7
8
+concurrency:
9
+ group: deploy-canary-${{ github.ref }}
10
+ cancel-in-progress: true
11
+
12
jobs:
13
deploy-canary:
14
if: github.repository == 'npmx-dev/npmx.dev'
@@ -14,6 +18,8 @@ jobs:
18
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
15
19
with:
16
20
fetch-depth: 0
17
- - run: npx vercel deploy --target=canary --token="$VERCEL_TOKEN"
21
+ - run: npx vercel deploy --target=canary
22
env:
23
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
24
+ VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
25
+ VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
0 commit comments