Skip to content

Commit

Permalink
Fix PR workflow
Browse files Browse the repository at this point in the history
The step name for the outputs was incorrect, and Github's validation was throwing an error on the use of `:` in the echo
  • Loading branch information
scruplelesswizard authored Dec 11, 2023
1 parent b00f0ff commit 579611d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Log when changed
if: steps.check-version-changed.outputs.changed == 'true'
run: echo "Version change found in commit ${{ steps.check.outputs.commit }}! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"
run: echo "Version change found in commit ${{ steps.check-version-changed.outputs.commit }}! New version is ${{ steps.check-version-changed.outputs.version }} (${{ steps.check-version-changed.outputs.type }})"

- name: Log when unchanged
if: steps.check-version-changed.outputs.changed == 'false'
Expand Down

0 comments on commit 579611d

Please sign in to comment.