From 729b380b054f08aed7229d05257bc56cbe8f77a8 Mon Sep 17 00:00:00 2001 From: Andrea Lamparelli Date: Thu, 6 Jul 2023 00:15:14 +0200 Subject: [PATCH] build: fix release workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 146df5f..c3a60a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: options: description: 'Additional release-it options' required: false - default: '--dry-run' + default: '' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -32,4 +32,4 @@ jobs: run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN - run: npm ci # the version/changelog must be already updated on main branch using "npm run release:prepare" - - run: npm run release --ci --no-increment --no-git.commit ${{ github.event.inputs.options }} \ No newline at end of file + - run: npm run release -- --ci --no-increment --no-git.commit ${{ github.event.inputs.options }} \ No newline at end of file