This commit is contained in:
@@ -36,9 +36,10 @@ jobs:
|
|||||||
&& echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
|
&& echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
|
||||||
|
|
||||||
- name: Setting commit message
|
- name: Setting commit message
|
||||||
run: echo "COMMIT_MSG=$(git log -1 --pretty=%B)" >> "$GITHUB_ENV" && echo "COMMIT MESSAGE IS `$COMMIT_MSG`"
|
id: commit-message
|
||||||
|
run: COMMIT_MESSAGE=$(git log -1 --pretty=%B); echo "COMMIT_MESSAGE=$COMMIT_MESSAGE" >> "$GITHUB_OUTPUT" && echo "commit message is '$COMMIT_MESSAGE'"
|
||||||
- name: Retrieve commit message
|
- name: Retrieve commit message
|
||||||
run: echo "${{ env.COMMIT_MESSAGE }}"
|
run: echo "${{ steps.commit-message.outputs.COMMIT_MESSAGE }}"
|
||||||
|
|
||||||
# Create a release for this specific version
|
# Create a release for this specific version
|
||||||
- name: Update Release with Files
|
- name: Update Release with Files
|
||||||
@@ -48,4 +49,4 @@ jobs:
|
|||||||
files: |-
|
files: |-
|
||||||
./dist/module.json
|
./dist/module.json
|
||||||
./dist/module.zip
|
./dist/module.zip
|
||||||
body: ${{ env.COMMIT_MESSAGE }}
|
body: ${{ steps.commit-message.outputs.COMMIT_MESSAGE }}
|
||||||
Reference in New Issue
Block a user