From 40f280e00f4ef973c9e542ce94fd964778b2614f Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Sat, 20 Apr 2024 17:15:55 -0300 Subject: [PATCH] remove build step from deploy action --- .github/workflows/deploy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1d73dbf..61b9a95 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -48,12 +48,6 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - # Optional: If your plugin is using composer dependencies, we want to include them - # WITHOUT the dev dependencies. - - name: Build - run: | - npm install - npm run build - name: WordPress Plugin Deploy # You can add unique ids to specific steps if you want to reference their output later in the workflow.