We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f41fb8 commit 3775a6aCopy full SHA for 3775a6a
scripts/commit_release.sh
@@ -29,8 +29,10 @@ pushd `dirname ${BASH_SOURCE[0]}`/../ >/dev/null
29
git push origin master --tags
30
31
#Create a release tag in each subrepo and push them
32
- git submodule foreach git tag -m "OmpSs-2-at-FPGA release ${VERSION}" ompss-2-at-fpga-release/${VERSION}
33
- git submodule foreach git push origin ompss-2-at-fpga-release/${VERSION}
+ if ! [[ ${VERSION} =~ [0-9]+\.[0-9]+\.[0-9]+-rc[0-9]* ]] ; then
+ git submodule foreach git tag -m "OmpSs-2-at-FPGA release ${VERSION}" ompss-2-at-fpga-release/${VERSION}
34
+ git submodule foreach git push origin ompss-2-at-fpga-release/${VERSION}
35
+ fi
36
37
#Clear the credentials cache
38
git credential-cache exit
0 commit comments