Skip to content

Commit

Permalink
Remove reference to missing changelog config (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted authored Sep 28, 2023
1 parent 2c4ad8e commit 4c80bfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:
uses: bakdata/ci-templates/.github/workflows/[email protected]
with:
release-type: "${{ github.event.inputs.release-type }}"
changelog: true
changelog-config: "./.github/changelog-config.json"
secrets:
github-username: "${{ secrets.GH_USERNAME }}"
github-email: "${{ secrets.GH_EMAIL }}"
Expand Down
4 changes: 4 additions & 0 deletions actions/changelog-generate/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ runs:
else
path=${{ inputs.config }}
fi
if [ ! -f "$path" ]; then
echo "changelog config file $path doesn't exist"
exit 1
fi
echo "path=$path" >> "$GITHUB_OUTPUT"
shell: bash

Expand Down

0 comments on commit 4c80bfc

Please sign in to comment.