bump chart version to 0.1.39 #40
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| id-token: write | |
| pages: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| - name: Ensure that chart version in YAML is the same as release tag | |
| run: | | |
| sed -i "s/^version: .*/version: ${GITHUB_REF#refs\/tags\/v}/" Chart.yaml | |
| git diff --exit-code | |
| - name: Install Helm | |
| uses: azure/setup-helm@v4.3.0 | |
| - name: Package chart | |
| run: helm package . | |
| - name: Create a release | |
| uses: softprops/action-gh-release@v2.3.2 | |
| with: | |
| files: '*.tgz' | |
| reindex: | |
| needs: release | |
| uses: ./.github/workflows/reindex.yaml |