This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Update to Airlock Microgateway 3.4.9 (#197) #94
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 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 |