Skip to content

Commit

Permalink
wip wip
Browse files Browse the repository at this point in the history
  • Loading branch information
valassi committed Sep 30, 2024
1 parent 912a4d6 commit c50e863
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/archiver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ jobs:
- name: create_runningtag
run: |
tagname=$${{ github.ref }}
echo "(From github.ref) tagname = ${tagname}"
tagname=$${{ github.ref_name }}
echo "(From github.ref) tagname = ${tagname}"
tagname_latest=${TAGNAME_LATEST}
Expand Down
6 changes: 3 additions & 3 deletions epochX/cudacpp/gitTag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ skipFetch=0
###skipFetch=1 # FOR DEBUGGING!

# The tag prefix used for all tags handled by this script
PREFIX=cudacpp
PREFIX=cudacpp_for

# Usage
function usage()
Expand Down Expand Up @@ -161,8 +161,8 @@ else
echo ""

# Build the version tag and running tag names
versTAG=${PREFIX}_for${mg5_version}_v${tagsuffix}
runnTAG=${PREFIX}_for${mg5_version}_latest
versTAG=${PREFIX}${mg5_version}_v${tagsuffix}
runnTAG=${PREFIX}${mg5_version}_latest
echo "INFO: will create version tag ${versTAG}"
echo "(the CI will create running tag ${runnTAG})"

Expand Down

0 comments on commit c50e863

Please sign in to comment.