From 2795997f4c1ecda30a03d5c1b3d30910c287fdc9 Mon Sep 17 00:00:00 2001 From: Felipe Suero Date: Fri, 28 Apr 2023 12:53:31 -0400 Subject: [PATCH] minor fixes --- .github/workflows/publish.yml | 2 +- {scripts => script}/workflows/increment-version.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) rename {scripts => script}/workflows/increment-version.sh (88%) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 69a25e1..19a3ac0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,6 @@ name: Create release PR -run-name: Create release PR for new v${{ github.event.inputs.version }} version +run-name: Create release PR for new ${{ github.event.inputs.version }} version on: workflow_dispatch: diff --git a/scripts/workflows/increment-version.sh b/script/workflows/increment-version.sh similarity index 88% rename from scripts/workflows/increment-version.sh rename to script/workflows/increment-version.sh index b915542..243fa8d 100755 --- a/scripts/workflows/increment-version.sh +++ b/script/workflows/increment-version.sh @@ -2,9 +2,6 @@ VERSION=$(cat lerna.json | jq -r '.version') -echo "Current version: $VERSION" -echo "Incrementing $1 version" - MAJOR=$(echo $VERSION | cut -d. -f1) MINOR=$(echo $VERSION | cut -d. -f2) PATCH=$(echo $VERSION | cut -d. -f3)