New update method

manage testing deplyement
This commit is contained in:
Azlux
2020-06-23 12:38:02 +02:00
parent 5768f20053
commit ccbde28ef9
5 changed files with 59 additions and 21 deletions

View File

@ -21,6 +21,14 @@ steps:
commands:
- rm -rf .git*
- rm -rf web
- echo '#### REPLACE TARGET ####'
- sed -i 's/target_version = git/target_version = testing/' configuration.default.ini
- echo '#### REPLACE VERSION ####'
- version=$(git rev-parse HEAD)
- echo "current git commit is $version"
- echo $version > /tmp/botamusique/testing-version
- sed -i "s/version = 'git'/version = '$version'/" mumbleBot.py
- echo '#### DEPLOY SOURCES ####'
- tar -czf /tmp/botamusique/sources-testing.tar.gz .
volumes:
- name: repo
@ -46,12 +54,34 @@ steps:
event:
- push
- name: fetch
image: alpine/git
commands:
- git fetch --tags
when:
branch:
- master
event:
- tag
- name: deploy-stable
image: debian
commands:
- apt -qq update && apt -q -y install jq curl
- rm -rf .git*
- rm -rf web
- echo '#### REPLACE TARGET ####'
- sed -i 's/target_version = git/target_version = stable/' configuration.default.ini
- echo '#### REPLACE VERSION ####'
- version=$(git describe --abbrev=0 --tags)
- echo "version is $version"
- echo $version > /tmp/botamusique/version
- sed -i "s/version = 'git'/version = '$version'/" mumbleBot.py
- echo '#### REPLACE CHANGELOG ####'
- curl --silent "https://api.github.com/repos/azlux/botamusique/releases/latest") | jq -r '.body' > /tmp/botamusique/changelog
- echo '#### DEPLOY SOURCES ####'
- tar -czf /tmp/botamusique/sources-stable.tar.gz .
volumes:
- name: repo
path: /tmp/botamusique/