fix: sign charts with digest #98
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: Release Charts Workflow | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
paths: | |
- '.github/workflows/release-charts-workflow.yaml' | |
- '.github/workflows/pr-and-release-chart.yaml' | |
- '.github/actions/pr-chart/action.yaml' | |
- '.github/actions/release-chart/action.yaml' | |
- '.github/workflows/pr-and-release-repo.yaml' | |
- '.github/actions/release-repo/action.yaml' | |
- '.github/actions/release-create-labels/action.yaml' | |
- '.github/actions/release-determine-bump/action.yaml' | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/release-charts-workflow.yaml' | |
- '.github/workflows/pr-and-release-chart.yaml' | |
- '.github/actions/pr-chart/action.yaml' | |
- '.github/actions/release-chart/action.yaml' | |
- '.github/workflows/pr-and-release-repo.yaml' | |
- '.github/actions/release-repo/action.yaml' | |
- '.github/actions/release-create-labels/action.yaml' | |
- '.github/actions/release-determine-bump/action.yaml' | |
permissions: | |
actions: read | |
contents: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
# Cancel early on pull requests if new commits are added, | |
# Don't cancel on release pushes | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
charts: | |
uses: ./.github/workflows/pr-and-release-repo.yaml | |
with: | |
runs-on: "ubuntu-latest" | |
job-name: charts | |
comment-release: true | |
release-tag-format: 'v${version}-charts' |