Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Update to Airlock Microgateway 3.4.12 (#200) #97

Update to Airlock Microgateway 3.4.12 (#200)

Update to Airlock Microgateway 3.4.12 (#200) #97

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
paths:
- 'charts/**/Chart.yaml'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: '${{ secrets.TECHNICAL_USER_TOKEN }}'
- name: Configure Git
run: |
git config user.name "'${{ secrets.TECHNICAL_USER }}'"
git config user.email "'${{ secrets.TECHNICAL_USER }}'@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.4.0
- name: Add Helm Repo
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add ealenn https://ealenn.github.io/charts
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: '${{ secrets.TECHNICAL_USER_TOKEN }}'
CR_SKIP_EXISTING: true