Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sebllll committed Oct 31, 2024
1 parent d3d10fc commit 8906264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
uses: nuget/[email protected]

- name: deploy
if: ${{ github.event.inputs.deploy }}
if: ${{ github.event.inputs.deploy == 'true' }}
run: echo "actually deploying..."

- name: Publish VL Nuget
if: ${{ github.event.inputs.deploy }}
if: ${{ github.event.inputs.deploy == 'true' }}
uses: vvvv/[email protected]
with:
nuspec: deployment\VL.RichTextKit.nuspec
Expand Down

0 comments on commit 8906264

Please sign in to comment.