Skip to content

Commit

Permalink
Fix: Update pre-commit workflow and add more logs
Browse files Browse the repository at this point in the history
Refined pre-commit workflow logic to correctly trigger on pushes when not merged. Additionally, increased logging to aid debugging and development.
  • Loading branch information
RedAtman committed Jul 20, 2024
1 parent 7f075ae commit f6f5a42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ jobs:

- name: Check release output
run: |
echo tag_version.output: "${{ steps.tag_version.outputs }}"
echo tag_version.output.new_tag: "${{ steps.tag_version.outputs.new_tag }}"
echo tag_version.output.new_version: "${{ steps.tag_version.outputs.new_version }}"
echo tag_version.output.previous_tag: "${{ steps.tag_version.outputs.previous_tag }}"
echo tag_version.output.previous_version: "${{ steps.tag_version.outputs.previous_version }}"
echo tag_version.output.release_type: "${{ steps.tag_version.outputs.release_type }}"
echo tag_version.output.changelog: "${{ steps.tag_version.outputs.changelog }}"
- name: Create a GitHub release
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit f6f5a42

Please sign in to comment.