Skip to content

Fix tag

Fix tag #7

Workflow file for this run

name: Release Helm Chart
on:
push:
branches:
- main
paths:
- values.yaml
- Chart.yaml
- templates/**
jobs:
release:
runs-on: org
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-dpth: 0
fetch-tags: true
- name: Configure Git
run: |
git config --global user.name 'Github Actions (${{ github.actor }})'
git config --global user.email '[email protected]'
- name: Run chart-releaser
uses: bitdeps/[email protected]
with:
charts_dir: .
oci_registry: ghcr.io/comet-ml
tag_name_pattern: ''
oci_username: github-actions
oci_password: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}