Skip to content

Commit

Permalink
Replicated SDK no longer uses v to prefix versions (#2729)
Browse files Browse the repository at this point in the history
  • Loading branch information
divolgin authored Oct 10, 2024
1 parent 43f02f1 commit 307f0fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/replicated-sdk-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
uses: replicatedhq/release-notes-generator@main
with:
owner-repo: replicatedhq/replicated-sdk
base: v$PREV_REPLICATED_SDK_VERSION
head: v$REPLICATED_SDK_VERSION
base: $PREV_REPLICATED_SDK_VERSION
head: $REPLICATED_SDK_VERSION
title: $REPLICATED_SDK_VERSION
include-pr-links: false
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/template-functions-examples.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ spec:
images:
replicated-sdk: >-
{{repl if HasLocalRegistry -}}
{{repl LocalRegistryHost }}/{{repl LocalRegistryNamespace }}/replicated-sdk:v1.0.0-beta.22
{{repl LocalRegistryHost }}/{{repl LocalRegistryNamespace }}/replicated-sdk:1.0.0-beta.29
{{repl else -}}
docker.io/replicated/replicated-sdk:v1.0.0-beta.22
docker.io/replicated/replicated-sdk:1.0.0-beta.29
{{repl end}}
```

Expand All @@ -221,7 +221,7 @@ Given the example above, if the user is _not_ using a local registry, then the `
# Helm chart values file
images:
replicated-sdk: 'docker.io/replicated/replicated-sdk:v1.0.0-beta.22'
replicated-sdk: 'docker.io/replicated/replicated-sdk:1.0.0-beta.29'
```

#### Multi-Line in Secret Object
Expand Down

0 comments on commit 307f0fa

Please sign in to comment.