We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c3026 commit f813438Copy full SHA for f813438
.github/workflows/release.yml
@@ -14,11 +14,14 @@ jobs:
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v2
17
+ - name: Get the version
18
+ id: get_version
19
+ run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
20
- name: Get Changelog Entries
21
id: changelog
22
uses: mindsers/changelog-reader-action@v2
23
with:
- version: ${{ github.ref }}
24
+ version: ${{ steps.get_version.outputs.VERSION }}
25
path: ./Changelog.md
26
- name: Create Release
27
uses: actions/create-release@v1
0 commit comments