Update charts-release.yaml

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten 2024-05-24 21:24:12 +02:00 committed by GitHub
parent ca854d9ed1
commit 6cf6d7dd33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 10 deletions

View File

@ -104,16 +104,16 @@ jobs:
id: collect-changes
uses: ./.github/actions/collect-changes
- name: Generate Changelog
shell: bash
if: |
steps.collect-changes.outputs.changesDetectedAfterTag == 'true'
run: |
export GOBIN=/usr/local/bin/
go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest
CHARTS=(${{ steps.collect-changes.outputs.modifiedChartsAfterTag }})
parthreads=$(($(nproc) * 2))
parallel -j ${parthreads} .github/scripts/changelog.sh '2>&1' ::: ${CHARTS[@]}
#- name: Generate Changelog
# shell: bash
# if: |
# steps.collect-changes.outputs.changesDetectedAfterTag == 'true'
# run: |
# export GOBIN=/usr/local/bin/
# go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest
# CHARTS=(${{ steps.collect-changes.outputs.modifiedChartsAfterTag }})
# parthreads=$(($(nproc) * 2))
# parallel -j ${parthreads} .github/scripts/changelog.sh '2>&1' ::: ${CHARTS[@]}
- name: Fix Pre-Commit issues
shell: bash