diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index d2b054e..c17ee2d 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -52,33 +52,3 @@ jobs: version: KXVSN5DZXZWQ4Q98JDV985BGF8H3D9R build-name: ci test-junit-path: test-results/junit.xml - - # Deploy-Preview: - # runs-on: ubuntu-latest - # needs: [test-unit-integration] - # if: github.ref != 'refs/heads/production' - # steps: - # - uses: actions/checkout@v4 - # - name: Install Vercel CLI - # run: npm install --global vercel@latest - # - name: Pull Vercel Environment Information - # run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} - # - name: Build Project Artifacts - # run: vercel build --token=${{ secrets.VERCEL_TOKEN }} - # - name: Deploy Project Artifacts to Vercel - # run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} - - # Deploy-Production: - # runs-on: ubuntu-latest - # needs: [test-unit-integration] - # if: github.ref == 'refs/heads/production' - # steps: - # - uses: actions/checkout@v4 - # - name: Install Vercel CLI - # run: npm install --global vercel@latest - # - name: Pull Vercel Environment Information - # run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - # - name: Build Project Artifacts - # run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - # - name: Deploy Project Artifacts to Vercel - # run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}