Compare commits

..

2 Commits

Author SHA1 Message Date
fc88596821 20250207.095231
All checks were successful
Release Creation / build (release) Successful in 26s
2025-02-07 09:52:31 -06:00
859339b403 20250207.094650
All checks were successful
Release Creation / build (release) Successful in 24s
2025-02-07 09:46:50 -06:00
2 changed files with 8 additions and 4 deletions

View File

@@ -36,7 +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
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
@@ -46,4 +49,4 @@ jobs:
files: |- files: |-
./dist/module.json ./dist/module.json
./dist/module.zip ./dist/module.zip
body: $COMMIT_MSG body: ${{ steps.commit-message.outputs.COMMIT_MESSAGE }}

3
.vscode/tasks.json vendored
View File

@@ -12,7 +12,8 @@
{ {
"label": "new release", "label": "new release",
"type": "shell", "type": "shell",
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\"" "command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\"",
"problemMatcher": []
} }
] ]
} }