We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1383696 commit eea07bdCopy full SHA for eea07bd
1 file changed
.github/workflows/release.yml
@@ -18,11 +18,16 @@ jobs:
18
with:
19
github-token: ${{ secrets.github_token }}
20
21
+ - name: Display changelog outputs
22
+ run: |
23
+ echo ${{ steps.changelog.outputs.tag }}
24
+ echo ${{ steps.changelog.outputs.clean_changelog }}
25
+
26
# Create a release after creating tag
27
# - only create a release if there is change of tags
28
- name: create release
29
uses: actions/create-release@v1
- if: ${{ steps.changelog.outputs.skipped == 'false' }}
30
+ # if: ${{ steps.changelog.outputs.skipped == 'false' }}
31
env:
32
GITHUB_TOKEN: ${{ secrets.github_token }}
33
0 commit comments