Skip to content

Commit

Permalink
[install] in release.sh, disable nested tags
Browse files Browse the repository at this point in the history
  • Loading branch information
valassi committed Sep 26, 2024
1 parent 01daafb commit cefe0db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epochX/cudacpp/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ echo ${runnTAG}
# Create the unique (~permanent) tag
git tag ${uniqTAG} ${BRANCH} -m "Unique tag ${uniqTAG}"

# Create the running tag
# Create the running tag (use ^{} to disable nested tags)
# (use '-f' to replace any previously existing tag with the same name)
git tag -f ${runnTAG} ${uniqTAG} -m "Running tag ${runnTAG} (linked to unique tag ${uniqTAG})"
git tag -f ${runnTAG} ${uniqTAG}^{} -m "Running tag ${runnTAG} (linked to unique tag ${uniqTAG})"

# Push the tags to the remote repository
# (use '-f' to replace any previously existing tag with the same name)
Expand Down

0 comments on commit cefe0db

Please sign in to comment.