Skip to content

Commit

Permalink
new release: 0.9.0-pre3
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Jun 25, 2020
1 parent a2ed53c commit 768464d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0-pre2
current_version = 0.9.0-pre3
tag = True
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-(?P<release>.*)
Expand All @@ -22,4 +22,3 @@ values =
[bumpversion:file:.github/workflows/release.yml]

[bumpversion:file:passbook/__init__.py]

12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Building Docker Image
run: docker build
--no-cache
-t beryju/passbook:0.9.0-pre2
-t beryju/passbook:0.9.0-pre3
-t beryju/passbook:latest
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook:0.9.0-pre2
run: docker push beryju/passbook:0.9.0-pre3
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook:latest
build-gatekeeper:
Expand All @@ -37,11 +37,11 @@ jobs:
cd gatekeeper
docker build \
--no-cache \
-t beryju/passbook-gatekeeper:0.9.0-pre2 \
-t beryju/passbook-gatekeeper:0.9.0-pre3 \
-t beryju/passbook-gatekeeper:latest \
-f Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-gatekeeper:0.9.0-pre2
run: docker push beryju/passbook-gatekeeper:0.9.0-pre3
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-gatekeeper:latest
build-static:
Expand All @@ -66,11 +66,11 @@ jobs:
run: docker build
--no-cache
--network=$(docker network ls | grep github | awk '{print $1}')
-t beryju/passbook-static:0.9.0-pre2
-t beryju/passbook-static:0.9.0-pre3
-t beryju/passbook-static:latest
-f static.Dockerfile .
- name: Push Docker Container to Registry (versioned)
run: docker push beryju/passbook-static:0.9.0-pre2
run: docker push beryju/passbook-static:0.9.0-pre3
- name: Push Docker Container to Registry (latest)
run: docker push beryju/passbook-static:latest
test-release:
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
appVersion: "0.9.0-pre2"
appVersion: "0.9.0-pre3"
description: A Helm chart for passbook.
name: passbook
version: "0.9.0-pre2"
version: "0.9.0-pre3"
icon: https://git.beryju.org/uploads/-/system/project/avatar/108/logo.png
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
tag: 0.9.0-pre2
tag: 0.9.0-pre3

nameOverride: ""

Expand Down
2 changes: 1 addition & 1 deletion passbook/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""passbook"""
__version__ = "0.9.0-pre2"
__version__ = "0.9.0-pre3"

0 comments on commit 768464d

Please sign in to comment.