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 a5ffc3f commit c1af1c9Copy full SHA for c1af1c9
.github/workflows/release.yml
@@ -105,12 +105,23 @@ jobs:
105
with:
106
name: restack-archive
107
108
+ - name: Install parse-changelog
109
+ uses: taiki-e/install-action@v1
110
+ with:
111
+ tool: [email protected]
112
+
113
+ - name: Extract changelog
114
+ run: |
115
+ REF=${{ github.ref }}
116
+ VERSION=${REF#refs/tags/v}
117
+ parse-changelog CHANGELOG.md "$VERSION" > ${{ github.workspace }}-CHANGELOG.txt
118
119
- name: Publish Release
120
uses: softprops/action-gh-release@v1
121
122
files: 'restack-*.tar.gz'
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123
+ body_path: ${{ github.workspace }}-CHANGELOG.txt
124
+ token: ${{ secrets.GITHUB_TOKEN }}
125
126
- name: Publish Homebrew tap
127
uses: Justintime50/homebrew-releaser@v1
0 commit comments