Publish #359
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Helm Chart | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build_bench: | |
name: Release Helm Chart | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Helm deploy key | |
if: github.repository == 'frappe/helm' | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.HELM_DEPLOY_KEY }} | |
- name: Setup Git Credentials | |
run: | | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
- name: Install Chartpress | |
run: pip3 install chartpress | |
- name: Publish Chart | |
run: chartpress --publish-chart |