From 859339b4036b3a7192559931ae5314a8dafc6e5f Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Fri, 7 Feb 2025 09:46:50 -0600 Subject: [PATCH] 20250207.094650 --- .gitea/workflows/main.yml | 4 +++- .vscode/tasks.json | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index d209fca..4b0f26d 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -37,6 +37,8 @@ jobs: - name: Setting commit message run: echo "COMMIT_MSG=$(git log -1 --pretty=%B)" >> "$GITHUB_ENV" && echo "COMMIT MESSAGE IS `$COMMIT_MSG`" + - name: Retrieve commit message + run: echo "${{ env.COMMIT_MESSAGE }}" # Create a release for this specific version - name: Update Release with Files @@ -46,4 +48,4 @@ jobs: files: |- ./dist/module.json ./dist/module.zip - body: $COMMIT_MSG \ No newline at end of file + body: ${{ env.COMMIT_MESSAGE }} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4267b7f..122472d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,12 +7,13 @@ "label": "commit and new release", "type": "shell", "command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git add . && git commit -m \"$TAG\" && git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\"", - "problemMatcher":[] + "problemMatcher": [] }, { "label": "new release", "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": [] } ] } \ No newline at end of file