Skip to content

Commit eea07bd

Browse files
committed
fix: removed changelog skip check
1 parent 1383696 commit eea07bd

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,16 @@ jobs:
1818
with:
1919
github-token: ${{ secrets.github_token }}
2020

21+
- name: Display changelog outputs
22+
run: |
23+
echo ${{ steps.changelog.outputs.tag }}
24+
echo ${{ steps.changelog.outputs.clean_changelog }}
25+
2126
# Create a release after creating tag
2227
# - only create a release if there is change of tags
2328
- name: create release
2429
uses: actions/create-release@v1
25-
if: ${{ steps.changelog.outputs.skipped == 'false' }}
30+
# if: ${{ steps.changelog.outputs.skipped == 'false' }}
2631
env:
2732
GITHUB_TOKEN: ${{ secrets.github_token }}
2833
with:

0 commit comments

Comments
 (0)