Compare commits

..

5 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
Eric Ernst
e4dfb0f90e should be able to test it out now?
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
2019-09-20 16:19:25 -07:00
Eric Ernst
05d02d9a25 can i figure out the branch i care about?
Signed-off-by: Eric Ernst <eric.ernst@intel.com>
2019-09-20 15:52:47 -07:00
2 changed files with 12 additions and 19 deletions

View File

@@ -13,30 +13,17 @@ jobs:
- name : the ok ok
run: |
echo "hello worold"
sudo apt-get update
sudo apt-get install -y curl git
#sudo apt-get update
#sudo apt-get install -y curl git
echo "still?"
# for test development:
git clone https://github.com/egernst/packaging-1
cd packaging-1
echo `pwd`
echo `ls`
cd release
cd packaging-1/release
tag=`echo $GITHUB_REF | cut -d/ -f3-`
echo `pwd`
echo `ls`
#./build-artifacts $GITHUB_TAG
echo "github tag?" $GITHUB_REF
echo "github sha"
echo $GITHUB_SHA
bash -x ./build-artifacts.sh $tag
echo `git branch -a --contains $GITHUB_SHA`
echo "done...."
# docker run alpine sh -c date
# cd obs-packaging
#
#./gen_versions_txt.sh "stable-1.8"
# cd ../release
# ./publish-kata-image.sh "1.8.2"
# ./kata-deploy-binaries.sh "1.8.2"

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}"