Skip to content

Commit

Permalink
fix: Always show output
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmlg committed Sep 10, 2021
1 parent 47a9a21 commit f642a0a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/testRelease.yml
Expand Up @@ -53,12 +53,15 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Test Outputs
if: steps.semantic.outputs.new_release_published == 'true'
# if: steps.semantic.outputs.new_release_published == 'true'
run: |
echo ${{ steps.semantic.outputs.new_release_version }}
echo ${{ steps.semantic.outputs.new_release_major_version }}
echo ${{ steps.semantic.outputs.new_release_minor_version }}
echo ${{ steps.semantic.outputs.new_release_patch_version }}
cat <<"EOF"
${{ steps.semantic.outputs.new_release_notes }}
EOF
test-semantic-v15:
name: test-semantic-v15
Expand Down Expand Up @@ -88,11 +91,14 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Test Outputs
if: steps.semantic.outputs.new_release_published == 'true'
# if: steps.semantic.outputs.new_release_published == 'true'
run: |
echo ${{ steps.semantic.outputs.new_release_version }}
echo ${{ steps.semantic.outputs.new_release_major_version }}
echo ${{ steps.semantic.outputs.new_release_minor_version }}
echo ${{ steps.semantic.outputs.new_release_patch_version }}
cat <<"EOF"
${{ steps.semantic.outputs.new_release_notes }}
EOF

0 comments on commit f642a0a

Please sign in to comment.