Skip to content

Commit f6a530d

Browse files
Fix/version validation (#233)
1 parent 2376415 commit f6a530d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
echo "Current: ${{ steps.current_version.outputs.version }}"
6464
echo "Release: ${{ steps.release_version.outputs.version }}"
65-
if [ "${{ steps.current_version.outputs.version }}" != "${{ steps.release_version.outputs.version }}" ] && [ "${{ steps.current_version.outputs.version }}" != "" ]; then
65+
if [ "${{ steps.current_version.outputs.version }}" != "${{ steps.release_version.outputs.version }}" ] && [ "${{ steps.release_version.outputs.version }}" != "" ]; then
6666
echo "PAYLOAD_VERSION has changed."
6767
exit 1
6868
else

0 commit comments

Comments
 (0)