Skip to content

Commit

Permalink
Prep 0.1.x (#272)
Browse files Browse the repository at this point in the history
* 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 <andy.goldstein@redhat.com>

* Update goreleaser args

Signed-off-by: Andy Goldstein <andy.goldstein@redhat.com>

* Bump version consts to v0.1.1

Signed-off-by: Andy Goldstein <andy.goldstein@redhat.com>

---------

Signed-off-by: Andy Goldstein <andy.goldstein@redhat.com>
  • Loading branch information
ncdc committed Jan 11, 2024
1 parent 595c916 commit 0a8801d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .ci/gpg/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
keyring
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Create release
run: |
if [[ $GITHUB_REF == refs/tags/* ]]; then
export GORELEASER_ARGS="--rm-dist"
export GORELEASER_ARGS="--clean"
fi
make release
env:
Expand Down
4 changes: 2 additions & 2 deletions pkg/plugins/hybrid/v1alpha/scaffolds/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ const (
imageName = "controller:latest"

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

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

var _ plugins.Scaffolder = &initScaffolder{}
Expand Down

0 comments on commit 0a8801d

Please sign in to comment.