aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/tag-repos.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/tag-repos.yml')
-rw-r--r--.github/workflows/tag-repos.yml11
1 files changed, 6 insertions, 5 deletions
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:
29 TAG_NAME=$(node -p 'require("./package.json").version') 29 TAG_NAME=$(node -p 'require("./package.json").version')
30 echo "TAG_NAME=v$TAG_NAME" >> $GITHUB_ENV 30 echo "TAG_NAME=v$TAG_NAME" >> $GITHUB_ENV
31 shell: bash 31 shell: bash
32 - name: Tag the main repo 32 # Note: commented out the tagging of the main repo - since that is auto-created when a new release is published
33 run: | 33 # - name: Tag the main repo
34 git tag -f $TAG_NAME 34 # run: |
35 git push origin --tags --no-verify 35 # git tag -f $TAG_NAME
36 shell: bash 36 # git push origin --tags --no-verify
37 # shell: bash
37 # Also tag the submodule so as to help identify which changes went into which release 38 # Also tag the submodule so as to help identify which changes went into which release
38 # TODO: Not working due to cross-repo access issues by the github-action bot 39 # TODO: Not working due to cross-repo access issues by the github-action bot
39 # - name: Tag the submodule 40 # - name: Tag the submodule