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*'