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 fd41547 commit 5e0668dCopy full SHA for 5e0668d
.github/workflows/ReleaseVersion.yml
@@ -130,7 +130,12 @@ jobs:
130
131
# Get the latest commit message from 'origin/master'
132
latest_commit=$(git log origin/master -1 --pretty=%B)
133
- echo "commit_message=$latest_commit" >> "$GITHUB_ENV"
+
134
+ # Set the commit_message as an output
135
+ echo "commit_message<<EOF" >> "$GITHUB_OUTPUT"
136
+ echo "$latest_commit" >> "$GITHUB_OUTPUT"
137
+ echo "EOF" >> "$GITHUB_OUTPUT"
138
139
140
- name: Upload Artifact
141
if: ${{ steps.set_vars.outputs.should_release == 'true' && steps.set_vars.outputs.upload_artifact == 'true' }}
0 commit comments