Skip to content

Commit

Permalink
[build] Strip the leading v from the version when pushing the chart
Browse files Browse the repository at this point in the history
Signed-off-by: Flynn <flynn@buoyant.io>
  • Loading branch information
kflynn committed Mar 6, 2024
1 parent 03464a7 commit b5e0da3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}

- name: Checkout code
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -47,5 +43,4 @@ jobs:
- name: Run make push-chart
env:
HELM_REGISTRY: oci://ghcr.io/buoyantio
VERSION: ${{ steps.get_version.outputs.VERSION }}
run: make push-chart
run: make VERSION=${GITHUB_REF#refs/tags/v} push-chart

0 comments on commit b5e0da3

Please sign in to comment.