From af0fe1db89489a2fd6c92dcda16005a7b88a0ebf Mon Sep 17 00:00:00 2001 From: zmstone Date: Sat, 22 Jun 2024 11:21:55 +0200 Subject: [PATCH] ci: do not trigger build on e tag pushes in oss repo --- .github/workflows/_push-entrypoint.yaml | 1 - scripts/rel/cut.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/_push-entrypoint.yaml b/.github/workflows/_push-entrypoint.yaml index 31ce9abd7..8404485ca 100644 --- a/.github/workflows/_push-entrypoint.yaml +++ b/.github/workflows/_push-entrypoint.yaml @@ -8,7 +8,6 @@ on: push: tags: - 'v*' - - 'e*' branches: - 'master' - 'release-5[0-9]' diff --git a/scripts/rel/cut.sh b/scripts/rel/cut.sh index 724b0cab2..ef7f421e6 100755 --- a/scripts/rel/cut.sh +++ b/scripts/rel/cut.sh @@ -283,6 +283,6 @@ if [ "$DRYRUN" = 'yes' ]; then else git tag "$TAG" logmsg "$TAG is created OK." - logwarn "Don't forget to push the tag!" + logwarn "Don't forget to push the tag! to both emqx.git and emqx-platform.git" echo "git push origin $TAG" fi