From 4c179ab4ef0a6817163a52517abd7e5ab201ff4f Mon Sep 17 00:00:00 2001 From: Martin Donadieu Date: Thu, 1 Jun 2023 01:53:56 +0100 Subject: [PATCH] fix: remove dry run --- .github/workflows/bump_version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 906377ac..6a19fd4a 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -43,10 +43,10 @@ jobs: git commit --m "docs: update doc" || true - name: Create bump and changelog main if: github.ref == 'refs/heads/main' - run: pnpm dlx capacitor-plugin-standard-version@latest --dry-run + run: pnpm dlx capacitor-plugin-standard-version@latest - name: Create bump and changelog development if: github.ref != 'refs/heads/main' - run: pnpm dlx capacitor-plugin-standard-version@latest --prerelease alpha --dry-run + run: pnpm dlx capacitor-plugin-standard-version@latest --prerelease alpha - name: Push to origin run: | CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)