Skip to content

Commit

Permalink
One more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellatman committed Nov 27, 2024
1 parent 08f6e36 commit 905d023
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
if: steps.git-check.outputs.changes == 'true'
run: |
if [ -f "temp/commit-msg.txt" ]; then
echo "message<<EOF" >> $GITHUB_OUTPUT
cat temp/commit-msg.txt >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "message<<EOF" >> "$GITHUB_OUTPUT"
cat temp/commit-msg.txt >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
else
echo "message=chore(packages): update MCP package list" >> $GITHUB_OUTPUT
echo "message=chore(packages): update MCP package list" >> "$GITHUB_OUTPUT"
fi
- name: Remove temp files
Expand Down

0 comments on commit 905d023

Please sign in to comment.