Skip to content

Commit

Permalink
Test release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yannick-roeder committed Nov 21, 2024
1 parent c9b5469 commit fc5cc36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-poetry-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit fc5cc36

Please sign in to comment.