diff --git a/.github/workflows/version.yaml b/.github/workflows/version.yaml index b887699..48be8dc 100644 --- a/.github/workflows/version.yaml +++ b/.github/workflows/version.yaml @@ -25,7 +25,7 @@ jobs: echo "previous=v$previous" >> $GITHUB_OUTPUT echo "current=v$current" >> $GITHUB_OUTPUT - - if: steps.version.previous != steps.version.current + - if: steps.version.outputs.previous != steps.version.outputs.current run: | - git tag ${{ steps.version.current }} - git push origin ${{ steps.version.current }} + git tag ${{ steps.version.outputs.current }} + git push origin ${{ steps.version.outputs.current }} diff --git a/package.json b/package.json index 7c00a65..af68e62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@choewy/nestjs-redis", - "version": "0.0.1", + "version": "0.0.2", "description": "NestJS Redis", "main": "dist/libs/index.js", "license": "MIT",