From d9decfdd7b2d34f2c79fe9fc728176a80270dc51 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 8 Sep 2022 11:07:16 +0530 Subject: Disabled tagging of the main repo since it is autocreated when a new release is published --- .github/workflows/tag-repos.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to '.github/workflows/tag-repos.yml') diff --git a/.github/workflows/tag-repos.yml b/.github/workflows/tag-repos.yml index 794b031bc..6ef055e7b 100644 --- a/.github/workflows/tag-repos.yml +++ b/.github/workflows/tag-repos.yml @@ -29,11 +29,12 @@ jobs: TAG_NAME=$(node -p 'require("./package.json").version') echo "TAG_NAME=v$TAG_NAME" >> $GITHUB_ENV shell: bash - - name: Tag the main repo - run: | - git tag -f $TAG_NAME - git push origin --tags --no-verify - shell: bash + # Note: commented out the tagging of the main repo - since that is auto-created when a new release is published + # - name: Tag the main repo + # run: | + # git tag -f $TAG_NAME + # git push origin --tags --no-verify + # shell: bash # Also tag the submodule so as to help identify which changes went into which release # TODO: Not working due to cross-repo access issues by the github-action bot # - name: Tag the submodule -- cgit v1.2.3-54-g00ecf