From 67820b86bf1ec61225151370c9bfa73da6243e0c Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Wed, 2 Dec 2020 23:38:23 +0800 Subject: [PATCH] Bumped to v0.5.0 --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b20135a..1a1da1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER “Jonathan Ervine” ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \ TERM='xterm' \ - VERSION='0.4.6' + VERSION='0.5.0' RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ apk update && \ diff --git a/Jenkinsfile b/Jenkinsfile index 03f0aed..e3ec529 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,11 +31,11 @@ spec: } git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:0.4 --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.4.6" + sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:0.5 --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v0.5.0" } } stage('Notify gchat') { - hangoutsNotify message: "Medusa 0.4.6 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + hangoutsNotify message: "Medusa 0.5.0 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false } } }