Skip to content

Commit e4886f0

Browse files
committed
new release: 0.8.0-beta
1 parent 8b2ce54 commit e4886f0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.17-beta
2+
current_version = 0.8.0-beta
33
tag = True
44
commit = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-(?P<release>.*)

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Building Docker Image
1717
run: docker build
1818
--no-cache
19-
-t beryju/passbook:0.7.17-beta
19+
-t beryju/passbook:0.8.0-beta
2020
-t beryju/passbook:latest
2121
-f Dockerfile .
2222
- name: Push Docker Container to Registry (versioned)
23-
run: docker push beryju/passbook:0.7.17-beta
23+
run: docker push beryju/passbook:0.8.0-beta
2424
- name: Push Docker Container to Registry (latest)
2525
run: docker push beryju/passbook:latest
2626
build-gatekeeper:
@@ -37,11 +37,11 @@ jobs:
3737
cd gatekeeper
3838
docker build \
3939
--no-cache \
40-
-t beryju/passbook-gatekeeper:0.7.17-beta \
40+
-t beryju/passbook-gatekeeper:0.8.0-beta \
4141
-t beryju/passbook-gatekeeper:latest \
4242
-f Dockerfile .
4343
- name: Push Docker Container to Registry (versioned)
44-
run: docker push beryju/passbook-gatekeeper:0.7.17-beta
44+
run: docker push beryju/passbook-gatekeeper:0.8.0-beta
4545
- name: Push Docker Container to Registry (latest)
4646
run: docker push beryju/passbook-gatekeeper:latest
4747
build-static:
@@ -66,11 +66,11 @@ jobs:
6666
run: docker build
6767
--no-cache
6868
--network=$(docker network ls | grep github | awk '{print $1}')
69-
-t beryju/passbook-static:0.7.17-beta
69+
-t beryju/passbook-static:0.8.0-beta
7070
-t beryju/passbook-static:latest
7171
-f static.Dockerfile .
7272
- name: Push Docker Container to Registry (versioned)
73-
run: docker push beryju/passbook-static:0.7.17-beta
73+
run: docker push beryju/passbook-static:0.8.0-beta
7474
- name: Push Docker Container to Registry (latest)
7575
run: docker push beryju/passbook-static:latest
7676
test-release:

helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
appVersion: "0.7.17-beta"
2+
appVersion: "0.8.0-beta"
33
description: A Helm chart for passbook.
44
name: passbook
5-
version: "0.7.17-beta"
5+
version: "0.8.0-beta"
66
icon: https://git.beryju.org/uploads/-/system/project/avatar/108/logo.png

helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44
image:
5-
tag: 0.7.17-beta
5+
tag: 0.8.0-beta
66

77
nameOverride: ""
88

passbook/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""passbook"""
2-
__version__ = "0.7.17-beta"
2+
__version__ = "0.8.0-beta"

0 commit comments

Comments
 (0)