Skip to content

Commit

Permalink
Prepare v0.1.0-beta-2 release
Browse files Browse the repository at this point in the history
Signed-off-by: Imran M Yousuf <imyousuf@gmail.com>
  • Loading branch information
imyousuf committed Feb 9, 2021
1 parent 9a86164 commit 35199c3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Run Test & Build
run: make dep-tools deps ci-test build
run: make os-deps dep-tools deps ci-test build
env:
APP_VERSION: ${{ steps.get_version.outputs.VERSION }}
- name: Upload build artifact
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type LogLevel uint8

// GetVersion provides the current version of the project
func GetVersion() AppVersion {
return "0.1.0-dev"
return "0.1.0-beta-2"
}

const (
Expand Down
4 changes: 2 additions & 2 deletions deploy-pkg/webhook-broker-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0-dev
version: 0.1.0-beta-2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: v0.1.0-dev
appVersion: v0.1.0-beta-2

keywords:
- webhook
Expand Down
2 changes: 1 addition & 1 deletion deploy-pkg/webhook-broker-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: registry.hub.docker.com/imyousuf/webhook-broker
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
tag: "v0.1.0-beta-2"

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
)

func TestGetAppVersion(t *testing.T) {
assert.Equal(t, string(GetAppVersion()), "0.1.0-dev")
assert.Equal(t, string(GetAppVersion()), "0.1.0-beta-2")
}

var mainFunctionBreaker = func(stop *chan os.Signal) {
Expand Down

0 comments on commit 35199c3

Please sign in to comment.