Improve auto-update

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-06-09 11:22:19 +02:00
parent 9b6183ac33
commit 3907c3c1db
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 31 additions and 1 deletions

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
sudo: required
services:
- docker
script:
- bash update.sh

View File

@ -1,5 +1,13 @@
#!/bin/bash
set -euxo pipefail
set -euo pipefail
### ---- ###
echo "Switch back to master"
git checkout master
git reset --hard origin/master
### ---- ###
version=$(curl -s "https://lv.luzifer.io/catalog-api/wordpress/latest.txt?p=version")
grep -q "WP_VERSION=${version} " Dockerfile && exit 0 || echo "Update required"
@ -10,3 +18,18 @@ sed -Ei \
-e "s/WP_VERSION=[0-9.]+/WP_VERSION=${version}/" \
-e "s/WP_CHECKSUM=[a-z0-9]+/WP_CHECKSUM=${wphash}/" \
Dockerfile
### ---- ###
echo "Testing build..."
docker build .
### ---- ###
echo "Updating repository..."
git add Dockerfile
git -c user.name='Travis Automated Update' -c user.email='travis@luzifer.io' \
commit -m "WordPress ${version}"
git tag ${version}
git push -q https://${GH_USER}:${GH_TOKEN}@github.com/luzifer-docker/wordpress master --tags