Skip to content

Commit

Permalink
🔖 Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinemartin committed Jan 26, 2023
1 parent 152aef6 commit 150a080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ metadata:
path: krmfnbuiltin
# Can also be:
# container:
# image: ghcr.io/kaweezle/krmfnbuiltin:v0.2.0
# image: ghcr.io/kaweezle/krmfnbuiltin:v0.3.0
patch: |-
- op: replace
path: /spec/source/repoURL
Expand Down Expand Up @@ -824,7 +824,7 @@ curl -sLS https://raw.githubusercontent.com/kaweezle/krmfnbuiltin/main/get.sh |
If you don't want to pipe into shell, you can do:

```console
> KRMFNBUILTIN_VERSION="v0.2.0"
> KRMFNBUILTIN_VERSION="v0.3.0"
> curl -sLo /usr/local/bin/krmfnbuiltin https://github.com/kaweezle/krmfnbuiltin/releases/download/${KRMFNBUILTIN_VERSION}/krmfnbuiltin_${KRMFNBUILTIN_VERSION}_linux_amd64
```

Expand Down Expand Up @@ -853,7 +853,7 @@ summarize:
```Dockerfile
FROM argoproj/argocd:latest

ARG KRMFNBUILTIN_VERSION=v0.2.0
ARG KRMFNBUILTIN_VERSION=v0.3.0

# Switch to root for the ability to perform install
USER root
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func main() {

cmd := command.Build(processor, command.StandaloneDisabled, false)
command.AddGenerateDockerfile(cmd)
cmd.Version = "v0.2.0" // <---VERSION--->
cmd.Version = "v0.3.0" // <---VERSION--->

if err := cmd.Execute(); err != nil {
os.Exit(1)
Expand Down

0 comments on commit 150a080

Please sign in to comment.