Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if [ -n "${{ github.event.inputs.version }}" ]; then
export VERSION=${{ github.event.inputs.version }}
else
export VERSION=$(echo "$GITHUB_REF" | cut -c12-)
export VERSION=$(echo "$GITHUB_REF" | cut -c11-)
fi
echo "Building Docker image with version: ${VERSION}"
make docker-build VERSION=${VERSION}
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
if [ -n "${{ github.event.inputs.version }}" ]; then
export VERSION=${{ github.event.inputs.version }}
else
export VERSION=$(echo "$GITHUB_REF" | cut -c12-)
export VERSION=$(echo "$GITHUB_REF" | cut -c11-)
fi
echo "Publishing Helm chart with version: ${VERSION}"
make helm-publish VERSION=${VERSION}
Expand All @@ -97,7 +97,7 @@ jobs:
if [ -n "${{ github.event.inputs.version }}" ]; then
export VERSION=${{ github.event.inputs.version }}
else
export VERSION=$(echo "$GITHUB_REF" | cut -c12-)
export VERSION=$(echo "$GITHUB_REF" | cut -c11-)
fi
echo "Building release artifacts with version: ${VERSION}"
make build-cli VERSION=${VERSION}
Expand Down
Loading