From 01dc14a36b2f7a4e41168fa9460616f4df9da197 Mon Sep 17 00:00:00 2001 From: Anna Schoderer Date: Wed, 12 Oct 2022 13:22:13 +0200 Subject: [PATCH] fix: renamed v3 to dbux-3 to map with style guidelines (#82) (#83) Co-authored-by: Nicolas Merget <104347736+nmerget@users.noreply.github.com> --- .github/scripts/publish-npm.sh | 2 +- .github/workflows/auto-update.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/publish-npm.sh b/.github/scripts/publish-npm.sh index 7518db10b..b08b2a4a3 100644 --- a/.github/scripts/publish-npm.sh +++ b/.github/scripts/publish-npm.sh @@ -19,7 +19,7 @@ echo "📦 Create packages" npm pack --quiet TAG="latest" -if [[ "$GITHUB_COMMITISH" =~ v[0-9]+ ]];then +if [[ "$GITHUB_COMMITISH" =~ dbux-[0-9]+ ]];then TAG=$GITHUB_COMMITISH elif [[ $PRE_RELEASE == 'true' ]]; then TAG="next" diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 38b9b8763..93f72ab49 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -9,7 +9,7 @@ jobs: auto-update: strategy: matrix: - update: [{ head: "main", base: "v3" }] + update: [{ head: "main", base: "dbux-3" }] uses: ./.github/workflows/99-auto-update-pr.yml with: head: ${{ matrix.update.head }}