Skip to content

Commit

Permalink
Fixed literal string in changeset script
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisli30 committed Nov 1, 2024
1 parent 3e475a2 commit 52140cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/record-changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
CHANGESET_FILE=$(echo "$CHANGESET_OUTPUT" | grep -o '[a-z0-9\-]\+\.md')
# Modify the changeset file to include the package
cat << EOF > .changeset/${CHANGESET_FILE}
cat > .changeset/${CHANGESET_FILE} << 'EOL'
---
@avaprotocol/sdk-js: ${{ github.event.inputs.version_type }}
"@avaprotocol/sdk-js": ${{ github.event.inputs.version_type }}
---

${COMMIT_MESSAGE}
EOF
EOL

echo "changeset_file=${CHANGESET_FILE}" >> $GITHUB_OUTPUT

Expand Down

0 comments on commit 52140cf

Please sign in to comment.