Skip to content

Merge branch 'node-local-dns-chart' of github.com:newrelic-forks/node… #17

Merge branch 'node-local-dns-chart' of github.com:newrelic-forks/node…

Merge branch 'node-local-dns-chart' of github.com:newrelic-forks/node… #17

Workflow file for this run

name: Release Charts
on:
push:
branches:
- node-local-dns-chart
jobs:
release:
permissions:
contents: write # to push chart release and create a release (helm/chart-releaser-action)
runs-on: ubuntu-latest
steps:
- name: Checkout Code
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: Set up Helm
uses: azure/setup-helm@v3.5
with:
version: v3.9.2
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
with:
charts_dir: stable
pages_branch: master
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"