add needs #3
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
get_folders: | |
runs-on: ubuntu-latest | |
outputs: | |
folders: ${{ steps.get.outputs.folders }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: get folders | |
id: get | |
run: | | |
echo "folders=$(ls -d bitnami/* | xargs -n 1 basename | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT | |
package-and-publish: | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-latest | |
needs: get_folders | |
strategy: | |
matrix: | |
folder: ${{ fromJson(needs.get_folders.outputs.folders) }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
- name: Login to GHCR with helm | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login -u ${{ github.actor }} --password-stdin ghcr.io | |
- name: Package chart | |
run: | | |
for i in {1..20}; do | |
helm package bitnami/${{ matrix.folder }} -u -d charts && break || sleep 10 | |
done | |
- name: Publish chart | |
run: helm push charts/${{ matrix.folder }}-*.tgz oci://ghcr.io/defenseunicorns/bitferno |