Răsfoiți Sursa

chore(dashboard): Enhance Vercel deployment output with environment details

David Höck 10 luni în urmă
părinte
comite
9d77b8df23
1 a modificat fișierele cu 4 adăugiri și 1 ștergeri
  1. 4 1
      .github/workflows/deploy_dashboard.yml

+ 4 - 1
.github/workflows/deploy_dashboard.yml

@@ -46,4 +46,7 @@ jobs:
               run: vercel deploy --archive=tgz --prebuilt --scope vendure  ${{ env.VERCEL_ENV == 'production' && '--prod' || '' }} --token=${{ secrets.VERCEL_TOKEN }} | awk 'END{print}' | awk '{print "URL="$1}' >> $GITHUB_OUTPUT
 
             - name: Print Vercel URL
-              run: echo "Vercel URL: ${{ steps.deploy_vercel.outputs.URL }}"
+              shell: bash
+              run: |
+                  echo "Vercel URL: ${{ steps.deploy_vercel.outputs.URL }}"
+                  echo "Vercel Environment: ${{ env.VERCEL_ENV }}"