From 8b1449edca57c21cea53a70568e9f364e8b2d613 Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Wed, 24 Jul 2024 14:36:40 -0400 Subject: [PATCH] v0.0.40 --- .github/workflows/ci.yml | 1 + package.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0066570..be62c80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,7 @@ jobs: id: get-release-type uses: actions/github-script@v7 with: + result-encoding: string script: | const regex = /(alpha|beta)/ const refName = context.ref.replace('refs/tags/', '') diff --git a/package.json b/package.json index b90ce1f..36be6c5 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "repository": "github:CartoDB/carto-api-client", "author": "Don McCurdy ", "packageManager": "yarn@4.3.1", - "version": "0.0.39", + "version": "0.0.40", "license": "MIT", "publishConfig": { "access": "public", @@ -40,7 +40,7 @@ "clean": "rimraf build/*", "postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push", "postversion:check": "yarn lint && yarn test", - "postversion:commit": "TAG=v$npm_package_version && git add -u && git commit -m $TAG && git tag -a $TAG -m $TAG", + "postversion:commit": "VERSION=v$npm_package_version && git add -u && git commit -m $VERSION && git tag -a $VERSION -m $VERSION", "postversion:push": "git push && git push --tags", "prepublish": "yarn lint && yarn test", "prepack": "yarn clean && yarn build"