From 9483c83d88461ed17f3eab948db7b3f1d75e53c7 Mon Sep 17 00:00:00 2001 From: Dragan Filipovic Date: Sat, 17 Apr 2021 00:08:19 +0200 Subject: [PATCH] CI fix input vars --- .github/workflows/version-bump-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/version-bump-publish.yml b/.github/workflows/version-bump-publish.yml index 1fac39c..f16cdd7 100644 --- a/.github/workflows/version-bump-publish.yml +++ b/.github/workflows/version-bump-publish.yml @@ -22,6 +22,6 @@ jobs: - name: bump and pub if: ${{ github.event.inputs.tag != '' }} run: | - npm version ${{ github.event.inputs.level }} + npm version ${{ github.event.inputs.tag }} git push - git tag -a v${{ github.event.inputs.level }} -m "v${{ github.event.inputs.level }}" + git tag -a v${{ github.event.inputs.tag }} -m "v${{ github.event.inputs.tag }}"