docs: add comment about direct access to mimir (#217) #114
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: chart-publish | |
on: | |
push: | |
branches: | |
- main | |
env: | |
HELM_DOCS_VERSION: '1.13.1' | |
permissions: read-all | |
jobs: | |
publish: | |
permissions: | |
contents: write # for helm/chart-releaser-action to push chart release and create a release | |
packages: write # for helm/chart-releaser-action to push chart release and create a release | |
id-token: write # for helm/chart-releaser-action to push chart release and create a release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
- name: Configure Git | |
run: | | |
git config user.name "helm-bot" | |
git config user.email "[email protected]" | |
- name: install helm-docs | |
run: | | |
cd /tmp | |
wget https://github.com/norwoodj/helm-docs/releases/download/v${{env.HELM_DOCS_VERSION}}/helm-docs_${{env.HELM_DOCS_VERSION}}_Linux_x86_64.tar.gz | |
tar -xvf helm-docs_${{env.HELM_DOCS_VERSION}}_Linux_x86_64.tar.gz | |
sudo mv helm-docs /usr/local/sbin | |
- name: run helm-docs | |
run: | | |
helm-docs . | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${ GITHUB_REPOSITORY_OWNER } | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
charts_dir: charts | |
config: './.github/configs/cr.yaml' | |
env: | |
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
CR_RELEASE_NAME_TEMPLATE: '{{ .Version }}-helm' | |
- uses: sigstore/[email protected] | |
- name: Push chart to GHCR | |
env: | |
COSIGN_EXPERIMENTAL: 1 | |
run: | | |
shopt -s nullglob | |
for pkg in .cr-release-packages/*; do | |
if [ -z "${pkg:-}" ]; then | |
break | |
fi | |
helm push "${pkg}" oci://ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts |& tee .digest | |
cosign sign $(cat .digest | awk -F "[, ]+" '/Pushed/{print $NF}') | |
done | |
- uses: oras-project/setup-oras@v1 | |
with: | |
version: 1.2.0 | |
- name: Push chart to GHCR | |
run: | | |
oras push ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts/opencost \ | |
--config /dev/null:application/vnd.cncf.artifacthub.config.v1+yaml \ | |
artifacthub-repo.yml:application/vnd.cncf.artifacthub.repository-metadata.layer.v1.yaml |