Skip to content

Commit

Permalink
Fix quoting issues in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lunkwill42 committed Dec 18, 2024
1 parent e5a86c1 commit b43961b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-for-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
- name: Verify update available
id: verify
run: |
if dpkg --compare-versions ${{ steps.package.outputs.version }} gt ${{ steps.appliance.outputs.version }}; then
if dpkg --compare-versions "${{ steps.package.outputs.version }}" gt "${{ steps.appliance.outputs.version }}"; then
echo "update_available=true" >> $GITHUB_OUTPUT
else
echo "update_available=false >> $GITHUB_OUTPUT
echo "update_available=false" >> $GITHUB_OUTPUT
fi
- name: Trigger Build Workflow
Expand Down

0 comments on commit b43961b

Please sign in to comment.