Skip to content

just change password to secret (#15) #14

just change password to secret (#15)

just change password to secret (#15) #14

Workflow file for this run

name: release
on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- '*.md'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: azure/setup-helm@v3
with:
version: '3.10.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: helm/chart-releaser-action@v1.4.1
with:
charts_dir: 'charts/'
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'