-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9b5469
commit fc5cc36
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,14 +100,14 @@ jobs: | |
|
||
- name: Download previous Helm index | ||
run: curl -O -L -f ${{ inputs.page-url }}/index.yaml | ||
if: ${{ inputs.skip-download == 'false' }} | ||
if: ${{ ! inputs.skip-download }} | ||
shell: bash | ||
working-directory: ${{ inputs.charts-dir }} | ||
|
||
- name: Find previous package versions | ||
id: packages | ||
uses: mikefarah/[email protected] | ||
if: ${{ inputs.skip-download == 'false' }} | ||
if: ${{ ! inputs.skip-download }} | ||
with: | ||
cmd: yq '.entries.[] | map(.urls.[]) | join(",")' ${{ inputs.charts-dir }}/index.yaml | ||
|
||
|
@@ -135,7 +135,7 @@ jobs: | |
|
||
- name: Download packages | ||
run: curl -O -L -f "${{ inputs.page-url }}/{${{ steps.packages.outputs.result }}}" | ||
if: ${{ inputs.skip-download == 'false' }} | ||
if: ${{ ! inputs.skip-download }} | ||
shell: bash | ||
working-directory: ${{ inputs.charts-dir }}/${{ inputs.artifact-dir }} | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ jobs: | |
- name: Create changelog | ||
id: build-changelog | ||
uses: bakdata/ci-templates/actions/[email protected] | ||
if: ${{ inputs.changelog == 'true' }} | ||
if: ${{ inputs.changelog }} | ||
with: | ||
github-token: ${{ secrets.github-token }} | ||
tag: ${{ steps.bump-version.outputs.release-version }} | ||
|