From f8a75490a98b84597d2362c084eb6e39d53b573c Mon Sep 17 00:00:00 2001 From: Evgeniy Popov Date: Mon, 8 Jan 2024 17:52:08 +0600 Subject: [PATCH] feat: check files 2 --- .github/workflows/deploy-pre-production.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/deploy-pre-production.yml b/.github/workflows/deploy-pre-production.yml index a212939..d47afc4 100644 --- a/.github/workflows/deploy-pre-production.yml +++ b/.github/workflows/deploy-pre-production.yml @@ -25,9 +25,6 @@ jobs: VERCEL_SCOPE: 1212evgen steps: - - name: 'Checkout' - uses: actions/checkout@v4 - - name: 'Setup Node.js v20' uses: actions/setup-node@v4 with: @@ -52,7 +49,7 @@ jobs: echo "deployment-url=$deploymentUrl" >> $GITHUB_OUTPUT - name: 'List files' - run: ls -R + run: ls -la .vercel - name: 'Assign domains' run: vercel alias set ${{ steps.vercel-deploy.outputs.deployment-url }} ${{ env.PRE_PROD_HOST }} --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ env.VERCEL_SCOPE }}