Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep 0.1.x #272

Merged
merged 3 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading