Skip to content

Merge pull request #4 from manfuin/in-cluster-plugin-over-ip #33

Merge pull request #4 from manfuin/in-cluster-plugin-over-ip

Merge pull request #4 from manfuin/in-cluster-plugin-over-ip #33

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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: bitdeps/helm-oci-charts-releaser@v0.1.0
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 }}
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: ./
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"