Ver Fonte

fix(dashboard): Update Vercel environment variable for minor deployment

David Höck há 9 meses atrás
pai
commit
b9b6fc0645
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      .github/workflows/deploy_dashboard.yml

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

@@ -15,7 +15,7 @@ jobs:
     deploy:
         runs-on: ubuntu-latest
         env:
-            VERCEL_ENV: ${{ github.ref_name == 'minor' && 'minor' || github.ref_name == 'major' && 'major' || 'production' }}
+            VERCEL_ENV: ${{ github.ref_name == 'minor' && 'development' || github.ref_name == 'major' && 'major' || 'production' }}
         steps:
             - name: Checkout repository
               uses: actions/checkout@v4