0
I have created SSH
task in bamboo whereas whenever the plan is run it has to copy that build ex, .jar or .war files to DigitalOcean
Spaces.I have written below script and its working fine
#!/bin/bash DATETIME=`date +%y%m%d-%H_%M_%S`
SRC=dist
DST=s3://bucket_name
NAME=Certified_artifact
tar -czvf $NAME-$DATETIME.tar.gz dist;
~/s3cmd-2.0.1/s3cmd put $NAME-$DATETIME.tar.gz s3://bucket_name;
But I need to copy with build numbers version it creates rather datetime. Could someone please help on this.
Thanks!
Hi @Naveen
Let me try to share a couple of variables that might be helpful to you. They are available in the shell environment while the build or deployment is running. Chose the option that matches the environment where your script is running.
Build plan
Deployment
I hope that one of them or a combination of them will solve your problem.
If you just want the number, you can use the bamboo_buildNumber variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.