Skip to content

Commit e4ffb02

Browse files
Show vercel version after installing
1 parent db50d29 commit e4ffb02

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/deploy_preview.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
uses: actions/checkout@v4
2929

3030
- name: Install Vercel CLI
31-
run: npm install --global vercel@latest
31+
run: |
32+
npm install --global vercel@latest
33+
vercel --version
3234
3335
- name: Pull Vercel Environment Information
3436
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}

.github/workflows/deploy_production.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
uses: actions/checkout@v4
2727

2828
- name: Install Vercel CLI
29-
run: npm install --global vercel@latest
29+
run: |
30+
npm install --global vercel@latest
31+
vercel --version
3032
3133
- name: Pull Vercel Environment Information
3234
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}

0 commit comments

Comments
 (0)