LCD-46943 release new chart version #27
This file contains hidden or 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
defaults: | |
run: | |
shell: bash | |
jobs: | |
test-cloud-helm-chart: | |
if: (github.repository == 'liferay/liferay-portal') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create Kind cluster | |
run: kind create cluster | |
- name: Run Helm test | |
run: | | |
helm upgrade -i liferay --wait . | |
helm test liferay | |
working-directory: ./cloud/helm | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- cloud/** |