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 7c89ed2 commit 2b8e570Copy full SHA for 2b8e570
1 file changed
.github/workflows/release.yml
@@ -107,12 +107,16 @@ jobs:
107
108
# Add ### Changelog before the changelog text
109
CHANGELOG="### Changelog \n$CHANGELOG"
110
+
111
+ # Save changelog to environment variable for later use
112
+ echo "CHANGELOG_TEXT=$CHANGELOG" >> $GITHUB_ENV
113
114
- name: Publish Release using gh CLI
115
run: |
116
gh release create "${{ github.ref_name }}" \
117
"aShellYou-${{ github.ref_name }}-release.apk" \
118
--title "aShell You ${{ github.ref_name }}" \
- --notes "$CHANGELOG"
119
+ --notes "${{ env.CHANGELOG_TEXT }}"
120
121
env:
122
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments