Merge pull request #12396 from z4ce/write-helm-latest-version

Write latest version to get.helm.sh bucket
pull/12424/head
Matt Farina 10 months ago committed by GitHub
commit 6ec681f82d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,6 +19,7 @@ jobs:
steps:
- name: Checkout source code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3.6.0
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@4.1.0
@ -32,6 +33,10 @@ jobs:
run: |
make build-cross
make dist checksum VERSION="${{ github.ref_name }}"
- name: Set latest version
# Push the latest semver tag, excluding prerelease tags
git tag | sort -r --version-sort | grep '^v[0-9]' | grep -v '-' | head -n1 > _dist/helm-latest-version
- name: Upload Binaries
uses: bacongobbler/azure-blob-storage-upload@50f7d898b7697e864130ea04c303ca38b5751c50 # pin@3.0.0

Loading…
Cancel
Save