diff --git a/.github/workflows/thoth-core-release.yml b/.github/workflows/thoth-core-release.yml index f2ef6d867..8b1dcf107 100644 --- a/.github/workflows/thoth-core-release.yml +++ b/.github/workflows/thoth-core-release.yml @@ -26,6 +26,10 @@ jobs: - name: set git tag name to enviroment working-directory: core run: echo "LATEST_TAG=v$(node -pe "require('./package.json').version")" >> $GITHUB_ENV + - name: add git tag and push + run: | + git tag ${{ env.LATEST_TAG }} + git push --tags - name: Install Dependencies run: yarn install - name: Prepare and Release diff --git a/core/package.json b/core/package.json index 9f1ae23f8..ddf370f65 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@latitudegames/thoth-core", - "version": "0.0.34", + "version": "0.0.32", "description": "core shared code for thoth", "scripts": { "build": "tsc",