Skip to content

Merge pull request #65 from jmesnil/eap8_GA_images #35

Merge pull request #65 from jmesnil/eap8_GA_images

Merge pull request #65 from jmesnil/eap8_GA_images #35

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Helm Chart Archive
on: [push, pull_request]
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: Create the Helm Package
run: |
rm -rf .helm-package
mkdir .helm-package
helm package charts/* -u -d .helm-package
- name: Upload the Helm package
uses: actions/upload-artifact@v3
with:
name: helm.tgz
path: .helm-package/*.tgz