From cb7f2e00e82203c8d77cfce6e802b40fdd5eeb14 Mon Sep 17 00:00:00 2001 From: Bartosz Art Date: Tue, 12 Mar 2024 01:30:05 +0100 Subject: [PATCH] Testing workflow --- .github/workflows/preview.yml | 42 +++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index b9c516d..ac322f9 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -1,21 +1,21 @@ -# name: GitHub Actions Vercel Preview Deployment -# env: -# VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} -# VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} -# on: -# push: -# branches: -# - main -# jobs: -# Deploy-Production: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v3 -# - name: Install Vercel CLI -# run: npm install --global vercel@canary -# - 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 }} +name: GitHub Actions Vercel Preview Deployment +env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} +on: + push: + branches: + - main +jobs: + Deploy-Production: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Vercel CLI + run: npm install --global vercel@canary + - 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 }}