File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 3232 - name : Set Environment Variables
3333 run : |
3434 echo "KEYSTORE_PATH=$PWD/keystore.jks" >> $GITHUB_ENV
35- echo "KEYSTORE_PASSWORD=$(echo -n '$ {{ secrets.KEYSTORE_PASSWORD }}') " >> $GITHUB_ENV
36- echo "KEY_ALIAS=$(echo -n '$ {{ secrets.KEY_ALIAS }}') " >> $GITHUB_ENV
37- echo "KEY_PASSWORD=$(echo -n '$ {{ secrets.KEY_PASSWORD }}') " >> $GITHUB_ENV
35+ echo "KEYSTORE_PASSWORD=${{ secrets.KEYSTORE_PASSWORD }}" >> $GITHUB_ENV
36+ echo "KEY_ALIAS=${{ secrets.KEY_ALIAS }}" >> $GITHUB_ENV
37+ echo "KEY_PASSWORD=${{ secrets.KEY_PASSWORD }}" >> $GITHUB_ENV
3838
3939 - name : Grant Execute Permission to Gradle
4040 run : chmod +x gradlew
@@ -129,10 +129,11 @@ jobs:
129129
130130 - name : Write Cleaned Generated Notes to File
131131 run : |
132- # Clean the generated release notes by removing leading/trailing whitespaces
133- echo "${{ steps.generate-release-notes.outputs.result }}" | sed 's/^[ \t]*//;s/[ \t]*$//' > generated_notes.txt
132+ # Write the generated release notes to a file
133+ echo "${{ steps.generate-release-notes.outputs.result }}" > generated_notes.txt
134134
135135 # Debug output
136+ echo "Generated notes:"
136137 cat generated_notes.txt
137138
138139 - name : Combine Release Notes and Changelog
You can’t perform that action at this time.
0 commit comments