forked from platypush/platypush
Merge pull request '[#317] Added Drone step to sync the stable branch on tag' (#332) from 317-ci-cd-automation-for-stable-branch into master
Reviewed-on: platypush/platypush#332
This commit is contained in:
commit
ae66e9c205
1 changed files with 60 additions and 0 deletions
60
.drone.yml
60
.drone.yml
|
@ -37,6 +37,63 @@ steps:
|
||||||
- git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github"
|
- git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github"
|
||||||
- git push --all -v github
|
- git push --all -v github
|
||||||
|
|
||||||
|
###
|
||||||
|
### Synchronize the `stable` branch to the new release
|
||||||
|
###
|
||||||
|
|
||||||
|
- name: sync-stable-branch
|
||||||
|
image: alpine
|
||||||
|
environment:
|
||||||
|
SSH_PUBKEY:
|
||||||
|
from_secret: ssh_pubkey
|
||||||
|
SSH_PRIVKEY:
|
||||||
|
from_secret: ssh_privkey
|
||||||
|
PGP_KEY:
|
||||||
|
from_secret: pgp_key
|
||||||
|
PGP_KEY_ID:
|
||||||
|
from_secret: pgp_key_id
|
||||||
|
|
||||||
|
commands:
|
||||||
|
- apk add --update --no-cache git bash gnupg openssh
|
||||||
|
|
||||||
|
# Backup the original git configuration before changing attributes
|
||||||
|
- export GIT_CONF=$PWD/.git/config
|
||||||
|
- cp $GIT_CONF /tmp/git.config.orig
|
||||||
|
- git config --global --add safe.directory $PWD
|
||||||
|
|
||||||
|
# Install the SSH and PGP keys
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- |
|
||||||
|
cat <<EOF | gpg --import --armor
|
||||||
|
$PGP_KEY
|
||||||
|
EOF
|
||||||
|
|
||||||
|
- echo $SSH_PUBKEY > ~/.ssh/id_rsa.pub
|
||||||
|
- |
|
||||||
|
cat <<EOF > ~/.ssh/id_rsa
|
||||||
|
$SSH_PRIVKEY
|
||||||
|
EOF
|
||||||
|
- chmod 0600 ~/.ssh/id_rsa
|
||||||
|
- ssh-keyscan git.platypush.tech >> ~/.ssh/known_hosts 2>/dev/null
|
||||||
|
|
||||||
|
# Git configuration
|
||||||
|
- git config user.name "Platypush CI/CD Automation"
|
||||||
|
- git config user.email "admin@platypush.tech"
|
||||||
|
- git config commit.gpgsign true
|
||||||
|
- git config user.signingkey $PGP_KEY_ID
|
||||||
|
- git remote rm origin
|
||||||
|
- git remote add origin git@git.platypush.tech:platypush/platypush.git
|
||||||
|
|
||||||
|
# Push to the `stable` branch
|
||||||
|
- git push -u origin stable
|
||||||
|
|
||||||
|
# Restore the original git configuration
|
||||||
|
- mv /tmp/git.config.orig $GIT_CONF
|
||||||
|
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
###
|
###
|
||||||
### Rebuild the docs
|
### Rebuild the docs
|
||||||
###
|
###
|
||||||
|
@ -71,6 +128,9 @@ steps:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- sync-stable-branch
|
||||||
|
|
||||||
###
|
###
|
||||||
### Run the tests
|
### Run the tests
|
||||||
###
|
###
|
||||||
|
|
Loading…
Reference in a new issue