Compare commits

..

3 Commits

Author SHA1 Message Date
Eric Ernst
2e56dbf7f9 convenient script for pushing tag for testing
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
2019-09-30 13:09:49 -07:00
Eric Ernst
3a752dbf9b add more debug
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
2019-09-23 11:33:36 -07:00
Eric Ernst
d9892c04e2 use the tag!
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
2019-09-20 16:21:23 -07:00
2 changed files with 7 additions and 1 deletions

View File

@@ -24,6 +24,6 @@ jobs:
echo `pwd`
echo `ls`
./build-artifacts.sh $GITHUB_REF
bash -x ./build-artifacts.sh $tag
echo "done...."

6
trigger-tags.sh Normal file
View File

@@ -0,0 +1,6 @@
tag=1.9.0-alpha2
git tag -d "${tag}"
git push egernst HEAD :"${tag}"
git tag -a "${tag}" -m "test push"
git push egernst HEAD "${tag}"