From 52ef352a7a25a38d338a6ad43af5a775c0d065fb Mon Sep 17 00:00:00 2001 From: Santiago Olayo <78331118+santiago-jv@users.noreply.github.com> Date: Fri, 21 Jun 2024 21:02:25 -0500 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bf83659..37ab4e4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,14 +20,10 @@ jobs: - name: Install dependencies for frontend run: | npm install - deploy: - runs-on: ubuntu-latest - needs: [build] - if: success() - steps: - - name: Checkout code - uses: actions/checkout@v4 - + - name: Generate build + run: | + npm run build + - name: Generate deployment package run: zip -r deploy.zip . -x '*.git*'