Update kube-prometheus-stack addon to 55.7.0 (#196) #1030
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish artifacts | |
on: | |
push: | |
jobs: | |
build_push_chart: | |
name: Build and push Helm charts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
with: | |
# This is important for the semver action to work correctly | |
# when determining the number of commits since the last tag | |
fetch-depth: 0 | |
- name: Get SemVer version for current commit | |
id: semver | |
uses: stackhpc/github-actions/semver@master | |
- name: Publish Helm charts | |
uses: stackhpc/github-actions/helm-publish@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: ${{ steps.semver.outputs.version }} | |
app-version: ${{ steps.semver.outputs.short-sha }} |