From 245b7a9d2fe5272ee34608f86a612d643694c23b Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Fri, 6 Jan 2023 21:50:25 +0100 Subject: [PATCH] fix: fix manual release action --- .github/workflows/manual-release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index d713e2e..2215220 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -6,11 +6,10 @@ on: description: 'Version' type: choice required: true - default: patch + default: fix options: - - patch - - minor - - major + - fix + - feat dryRun: description: 'DryRun' type: boolean @@ -64,7 +63,7 @@ jobs: run: npm run build --if-present - name: Run Tests run: npm test --if-present - - name: Publish npm package + - name: Create a release - ${{ github.event.inputs.version }} uses: cycjimmy/semantic-release-action@v3 with: dry_run: ${{ github.event.inputs.dryRun == 'true' }}