Skip to content

Merge pull request #74 from jmesnil/JBEAP-27338_eap-xp5-example #5

Merge pull request #74 from jmesnil/JBEAP-27338_eap-xp5-example

Merge pull request #74 from jmesnil/JBEAP-27338_eap-xp5-example #5

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Helm Chart Release
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request for the release branch
push:
branches-ignore:
- gh-pages
- "**-dev"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
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@v3
with:
version: v3.4.0
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"