File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,10 @@ jobs:
87
87
# Delete local tag if it exists
88
88
git tag -d nightly 2>/dev/null || true
89
89
90
- echo "Creating new nightly release..."
91
- # Create new release with tag
92
- gh release create nightly \
93
- --title "Nightly Build v${VERSION}" \
94
- --notes "🌙 This is an automated nightly build from the master branch.
90
+ # Create release notes
91
+ RELEASE_NOTES="🌙 This is an automated nightly build from the master branch.
95
92
96
- ${{ env. CHANGELOG } }
93
+ ${CHANGELOG}
97
94
98
95
## Installation
99
96
@@ -103,7 +100,15 @@ jobs:
103
100
### Other Editors
104
101
- Download tact-language-server-v${VERSION}.tar.gz (Linux/macOS) or tact-language-server-v${VERSION}.zip (Windows)
105
102
- Extract it to a convenient location
106
- - Configure your editor to use the language server from the extracted folder" \
103
+ - Configure your editor to use the language server from the extracted folder"
104
+
105
+ echo "Creating new nightly release..."
106
+ echo "$RELEASE_NOTES" > release_notes.md
107
+
108
+ # Create new release with tag
109
+ gh release create nightly \
110
+ --title "Nightly Build v${VERSION}" \
111
+ --notes-file release_notes.md \
107
112
--prerelease \
108
113
--target master \
109
114
*.vsix "tact-language-server-v${VERSION}.tar.gz" "tact-language-server-v${VERSION}.zip"
You can’t perform that action at this time.
0 commit comments