From ba93087f630f8426760a3c3f351e46a274ef8fce Mon Sep 17 00:00:00 2001 From: haripriyan Date: Tue, 12 Dec 2023 17:42:19 +0530 Subject: [PATCH] chore: updates release yml --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 230cd34..91be225 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,10 @@ on: branches: - master - next + paths-ignore: + - 'CHANGELOG.md' + - 'package-lock.json' + - 'package.json' jobs: release: runs-on: ubuntu-latest @@ -49,7 +53,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Release package if: github.ref == 'refs/heads/master' - run: npm run release -- --ci -VV + run: npm run release -- --ci --dry-run -VV env: NPM_TOKEN: ${{ secrets.RN_SDK_NPM_WRITE_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}