Fix chart release action (#210) #23
Workflow file for this run
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
on: | |
push: | |
tags: | |
- "chart-*" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
name: Chart | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
chart-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Package Chart | |
run: | | |
make package-chart; | |
- name: Release Chart | |
run: | | |
gh release upload ${{ github.ref_name }} deploy/* | |
- name: Index Chart | |
run: | | |
make index-chart |