new release: 0.10.1-stable

This commit is contained in:
Jens Langhammer 2020-09-14 23:08:57 +02:00
parent 3bbded3555
commit 4d51295db2
9 changed files with 18 additions and 18 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0-stable
current_version = 0.10.1-stable
tag = True
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-(?P<release>.*)

View File

@ -18,11 +18,11 @@ jobs:
- name: Building Docker Image
run: docker build
--no-cache
-t beryju/passbook:0.10.0-stable
-t beryju/passbook:0.10.1-stable
-t beryju/passbook:latest
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook:0.10.0-stable
run: docker push beryju/passbook:0.10.1-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook:latest
build-proxy:
@ -48,11 +48,11 @@ jobs:
cd proxy
docker build \
--no-cache \
-t beryju/passbook-proxy:0.10.0-stable \
-t beryju/passbook-proxy:0.10.1-stable \
-t beryju/passbook-proxy:latest \
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-proxy:0.10.0-stable
run: docker push beryju/passbook-proxy:0.10.1-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-proxy:latest
build-static:
@ -77,11 +77,11 @@ jobs:
run: docker build
--no-cache
--network=$(docker network ls | grep github | awk '{print $1}')
-t beryju/passbook-static:0.10.0-stable
-t beryju/passbook-static:0.10.1-stable
-t beryju/passbook-static:latest
-f static.Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-static:0.10.0-stable
run: docker push beryju/passbook-static:0.10.1-stable
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-static:latest
test-release:
@ -114,5 +114,5 @@ jobs:
SENTRY_PROJECT: passbook
SENTRY_URL: https://sentry.beryju.org
with:
tagName: 0.10.0-stable
tagName: 0.10.1-stable
environment: beryjuorg-prod

View File

@ -20,7 +20,7 @@ wget https://raw.githubusercontent.com/BeryJu/passbook/master/docker-compose.yml
# Optionally enable Error-reporting
# export PASSBOOK_ERROR_REPORTING=true
# Optionally deploy a different version
# export PASSBOOK_TAG=0.10.0-stable
# export PASSBOOK_TAG=0.10.1-stable
# If this is a productive installation, set a different PostgreSQL Password
# export PG_PASS=$(pwgen 40 1)
docker-compose pull

View File

@ -23,7 +23,7 @@ services:
labels:
- traefik.enable=false
server:
image: beryju/passbook:${PASSBOOK_TAG:-0.10.0-stable}
image: beryju/passbook:${PASSBOOK_TAG:-0.10.1-stable}
command: server
environment:
PASSBOOK_REDIS__HOST: redis
@ -41,7 +41,7 @@ services:
env_file:
- .env
worker:
image: beryju/passbook:${PASSBOOK_TAG:-0.10.0-stable}
image: beryju/passbook:${PASSBOOK_TAG:-0.10.1-stable}
command: worker
networks:
- internal
@ -55,7 +55,7 @@ services:
env_file:
- .env
static:
image: beryju/passbook-static:${PASSBOOK_TAG:-0.10.0-stable}
image: beryju/passbook-static:${PASSBOOK_TAG:-0.10.1-stable}
networks:
- internal
labels:

View File

@ -13,7 +13,7 @@ Download the latest `docker-compose.yml` from [here](https://raw.githubuserconte
To optionally enable error-reporting, run `echo PASSBOOK_ERROR_REPORTING=true >> .env`
To optionally deploy a different version run `echo PASSBOOK_TAG=0.10.0-stable >> .env`
To optionally deploy a different version run `echo PASSBOOK_TAG=0.10.1-stable >> .env`
If this is a fresh passbook install run the following commands to generate a password:

View File

@ -11,7 +11,7 @@ This installation automatically applies database migrations on startup. After th
image:
name: beryju/passbook
name_static: beryju/passbook-static
tag: 0.10.0-stable
tag: 0.10.1-stable
nameOverride: ""

View File

@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "0.10.0-stable"
appVersion: "0.10.1-stable"
description: A Helm chart for passbook.
name: passbook
version: "0.10.0-stable"
version: "0.10.1-stable"
icon: https://github.com/BeryJu/passbook/blob/master/docs/images/logo.svg
dependencies:
- name: postgresql

View File

@ -4,7 +4,7 @@
image:
name: beryju/passbook
name_static: beryju/passbook-static
tag: 0.10.0-stable
tag: 0.10.1-stable
nameOverride: ""

View File

@ -1,2 +1,2 @@
"""passbook"""
__version__ = "0.10.0-stable"
__version__ = "0.10.1-stable"