no need to use variable for something that isn't dynamic. one may just get the wrong impression

This commit is contained in:
toby 2018-09-25 15:48:41 +00:00
parent 297c47469b
commit 56ca407ad9
1 changed files with 3 additions and 4 deletions

View File

@ -2,12 +2,11 @@ pipeline:
build:
image: registry.v1.cloud.wit.com/toby/packager:1.3
commands:
- export DEBNAME=wit-pxeboot
- echo "$DEBNAME (1.0.$(date +%Y.%m.%d.%H.%M)) unstable; urgency=low\n\n$(git log --format=" * %s")\n\n -- wit <netops@wit.com> $(date -R)" >debian/changelog
- echo "wit-pxeboot (1.0.$(date +%Y.%m.%d.%H.%M)) unstable; urgency=low\n\n$(git log --format=" * %s")\n\n -- wit <netops@wit.com> $(date -R)" >debian/changelog
- ./create_pxeinitrd.sh
- dpkg-buildpackage --no-sign
- ls -lha ../$DEBNAME_*_all.deb
- ls -lha ../wit-pxeboot_*_all.deb
- echo "$SSH_KEY" >/tmp/id_rsa
- chmod 600 /tmp/id_rsa
- scp -i /tmp/id_rsa -o StrictHostKeyChecking=no -P 22022 ../$DEBNAME_*_all.deb root@cloud-api.v1.cloud.wit.com:/data/incoming
- scp -i /tmp/id_rsa -o StrictHostKeyChecking=no -P 22022 ../wit-pxeboot_*_all.deb root@cloud-api.v1.cloud.wit.com:/data/incoming
secrets: [ ssh_key ]