Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,9 @@ jobs:

# Check if branch already exists on remote
if git ls-remote --exit-code --heads origin "refs/heads/$BRANCH" >/dev/null 2>&1; then
echo "❌ Branch $BRANCH already exists on remote!"
echo "Delete it or bump the version before re-running."
MSG="❌ Branch $BRANCH already exists on remote! Delete it or bump the version before re-running."
echo "$MSG"
echo "$MSG" > /tmp/changelog_error.txt
exit 1
fi

Expand Down Expand Up @@ -289,18 +290,20 @@ jobs:
} >> "$GITHUB_STEP_SUMMARY"
else
{
echo "# ❌ Release Creation Failed"
echo "# ❌ Release Failed"
echo ""
echo "**Version:** ${{ steps.extract_version.outputs.tag_version }}"
echo "**Tag:** ${{ steps.tag_name.outputs.tag_name }}"
echo ""
echo "## Error Details"
echo ""
echo "\`\`\`"
if [ -f /tmp/release_output.txt ]; then
if [ -f /tmp/changelog_error.txt ]; then
cat /tmp/changelog_error.txt
elif [ -f /tmp/release_output.txt ]; then
cat /tmp/release_output.txt
else
echo "No error details captured"
echo "No error details captured — check the job logs above for the failed step."
fi
echo "\`\`\`"
} >> "$GITHUB_STEP_SUMMARY"
Expand Down
2 changes: 1 addition & 1 deletion vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "copilot-token-tracker",
"displayName": "Copilot Token Tracker",
"description": "Shows daily and monthly (estimated) GitHub Copilot token usage stats in VS Code status bar",
"version": "0.0.21",
"version": "0.0.22",
"publisher": "RobBos",
"engines": {
"vscode": "^1.110.0"
Expand Down
Loading