Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit f813438

Browse files
committed
Fix release workflow
1 parent 44c3026 commit f813438

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
17+
- name: Get the version
18+
id: get_version
19+
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
1720
- name: Get Changelog Entries
1821
id: changelog
1922
uses: mindsers/changelog-reader-action@v2
2023
with:
21-
version: ${{ github.ref }}
24+
version: ${{ steps.get_version.outputs.VERSION }}
2225
path: ./Changelog.md
2326
- name: Create Release
2427
uses: actions/create-release@v1

0 commit comments

Comments
 (0)