Skip to content

Commit 0a8801d

Browse files
authored
Prep 0.1.x (#272)
* Ignore .ci/gpg/keyring in git This is generated on the fly in CI, should never be checked in, and breaks goreleaser if it's not ignored. Signed-off-by: Andy Goldstein <[email protected]> * Update goreleaser args Signed-off-by: Andy Goldstein <[email protected]> * Bump version consts to v0.1.1 Signed-off-by: Andy Goldstein <[email protected]> --------- Signed-off-by: Andy Goldstein <[email protected]>
1 parent 595c916 commit 0a8801d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.ci/gpg/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
keyring

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Create release
3636
run: |
3737
if [[ $GITHUB_REF == refs/tags/* ]]; then
38-
export GORELEASER_ARGS="--rm-dist"
38+
export GORELEASER_ARGS="--clean"
3939
fi
4040
make release
4141
env:

pkg/plugins/hybrid/v1alpha/scaffolds/init.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ const (
4141
imageName = "controller:latest"
4242

4343
// TODO: This is a placeholder for now. This would probably be the operator-sdk version
44-
hybridOperatorVersion = "0.1.0"
44+
hybridOperatorVersion = "0.1.1"
4545

4646
// helmPluginVersion is the operator-framework/helm-operator-plugin version to be used in the project
47-
helmPluginVersion = "v0.1.0"
47+
helmPluginVersion = "v0.1.1"
4848
)
4949

5050
var _ plugins.Scaffolder = &initScaffolder{}

0 commit comments

Comments
 (0)