Skip to content

Update Chart.yaml

Update Chart.yaml #25

Workflow file for this run

name: Release Charts
on:
push:
tags:
- "*"
jobs:
release:
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: bitdeps/[email protected]
with:
oci_registry: ghcr.io/intertwin-eu/interlink-helm-chart
oci_username: dciangot
charts_dir: ./
oci_password: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}