Skip to content

Remove test line from NOTES.tx #11

Remove test line from NOTES.tx

Remove test line from NOTES.tx #11

Workflow file for this run

name: Release Helm Chart
on:
push:
branches:
- main
paths:
- charts/s3proxy/**
jobs:
release:
runs-on: ubuntu-latest
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 'github-actions@comet.com'
- name: Run chart-releaser
uses: bitdeps/helm-oci-charts-releaser@v0.1.3
with:
oci_registry: ghcr.io/comet-ml
tag_name_pattern: ''
oci_username: github-actions
oci_password: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}