Skip to content

Allow imagePullSecrets to be specified in values.yaml (#55) #22

Allow imagePullSecrets to be specified in values.yaml (#55)

Allow imagePullSecrets to be specified in values.yaml (#55) #22

Workflow file for this run

name: 'Publish helm chart'
on:
push:
branches:
- 'main'
paths:
- 'deploy/**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
-
name: Install Helm
uses: azure/setup-helm@v1
with:
version: v3.11.2
-
name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: deploy
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"