feat(thanos): Added remote write ingress support to receive (#939) #682
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- release-* | |
paths: | |
- charts/**/Chart.yaml | |
jobs: | |
workflow: | |
name: Reusable Workflow | |
uses: action-stars/helm-workflows/.github/workflows/release.yaml@main | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
secrets: | |
oci_password: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
chart_dir: charts | |
release_as_latest: true | |
release_notes: true | |
publish_gh_pages: true | |
publish_oci: true | |
oci_registry: "ghcr.io" | |
oci_username: ${{ github.actor }} | |
oci_repository_prefix: ${{ github.repository }} |