From 2a6868a49c130ecc4636e96610f662d59c9168ec Mon Sep 17 00:00:00 2001 From: JGiter Date: Tue, 6 Jun 2023 13:00:14 +0300 Subject: [PATCH] fix: remove semantic release action --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ba30cc31..1bf2937d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,22 +46,22 @@ jobs: - name: Build package run: npm run build - - name: Npm Run Test - run: npm run test + # - name: Npm Run Test + # run: npm run test - name: Deploy on develop branch if: github.ref == 'refs/heads/develop' - uses: codfish/semantic-release-action@v1 env: GITHUB_TOKEN: ${{ secrets.SECRET_NAME }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx semantic-release - name: Deploy on master branch if: github.ref == 'refs/heads/master' - uses: codfish/semantic-release-action@v1 env: GITHUB_TOKEN: ${{ secrets.SECRET_NAME }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx semantic-release - name: Merge master into develop if: github.ref == 'refs/heads/master'