Skip to content

Commit

Permalink
Fixed conditions for deploy tag workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrst88 committed Jun 7, 2023
1 parent d112a20 commit a6d6971
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ jobs:
- name: Validation
id: validation
run: |
if [ ${{ needs.setup.outputs.config-tag }} == "" ]; then
if [ ${{ needs.setup.outputs.config-tag }} = "" ]; then
echo "::set-output name=skip::true"
else
echo "::set-output name=skip::false"
fi
update:
Expand Down

0 comments on commit a6d6971

Please sign in to comment.