Skip to content

Merge pull request #66 from jbossas/eap8-dev #4

Merge pull request #66 from jbossas/eap8-dev

Merge pull request #66 from jbossas/eap8-dev #4

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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.4.0
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.1.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"