diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml index 63714cd..04eda9b 100644 --- a/.github/workflows/autoupdate.yml +++ b/.github/workflows/autoupdate.yml @@ -78,7 +78,7 @@ jobs: uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref }} - name: Release ${{ github.ref }} + name: v${{ needs.update.outputs.version }} body_path: ${{ github.workspace }}/README.md repository: dudko-dev/protoobject token: ${{ secrets.TOKEN_FOR_WORKFLOW }} diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 7472440..6e80bd9 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -112,7 +112,7 @@ jobs: uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref }} - name: Release ${{ github.ref }} + name: v${{ env.RELEASE_VERSION }} body_path: ${{ github.workspace }}/README.md repository: dudko-dev/protoobject token: ${{ secrets.TOKEN_FOR_WORKFLOW }} diff --git a/package.json b/package.json index 0bf397d..3d7e816 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "protoobject", - "version": "1.0.1", + "version": "1.0.2", "description": "A universal class for creating any JSON objects and simple manipulations with them.", "main": "./lib/index.js", "types": "./lib/index.d.ts",