Skip to content

Commit

Permalink
flip the conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence authored Mar 11, 2024
1 parent e03d01b commit 55766cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build-tag-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ runs:
shell: bash
run: |
README="${{ inputs.readme_md }}"
if [[ -f "$README" ]]; then
# Make sure a README exists.
if [[ ! -f "$README" ]]; then
echo "No README file found with the name $README. Set the readme_md value if your file is named differently."
exit 1
fi
Expand Down

0 comments on commit 55766cb

Please sign in to comment.