Skip to content

Commit a731ce4

Browse files
committed
Fix publish workflow
1 parent df03ec8 commit a731ce4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -88,21 +88,21 @@ jobs:
8888
echo "Successfully published release version ${{ steps.get_version.outputs.version }} to VS Code Marketplace and Open VSX Registry"
8989
fi
9090
91-
- name: Get Changelog Entry
92-
id: changelog
93-
uses: mindsers/changelog-reader-action@v2
94-
with:
95-
# This expects a standard Keep a Changelog format
96-
# "latest" means it will read whichever is the most recent version
97-
# set in "## [1.2.3] - 2025-01-28" style
98-
version: latest
91+
# - name: Get Changelog Entry
92+
# id: changelog
93+
# uses: mindsers/changelog-reader-action@v2
94+
# with:
95+
# # This expects a standard Keep a Changelog format
96+
# # "latest" means it will read whichever is the most recent version
97+
# # set in "## [1.2.3] - 2025-01-28" style
98+
# version: latest
9999

100100
- name: Create GitHub Release
101101
uses: softprops/action-gh-release@v1
102102
with:
103103
files: "*.vsix"
104-
body: ${{ steps.changelog.outputs.content }}
105-
generate_release_notes: false
104+
# body: ${{ steps.changelog.outputs.content }}
105+
generate_release_notes: true
106106
prerelease: ${{ github.event.inputs.release-type == 'pre-release' }}
107107
env:
108108
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)