fix: Simplify release notes format to fix YAML parsing error
- Remove multiline formatting from --notes argument - Use single-line format to avoid YAML syntax errors - Version and Commit info preserved in notes
This commit is contained in:
@@ -121,16 +121,10 @@ jobs:
|
|||||||
COMMIT: ${{ steps.metadata.outputs.commit }}
|
COMMIT: ${{ steps.metadata.outputs.commit }}
|
||||||
run: |
|
run: |
|
||||||
ARTIFACT="quantengine_${VERSION}.tar.gz"
|
ARTIFACT="quantengine_${VERSION}.tar.gz"
|
||||||
BUILD_TIME=$(date '+%Y-%m-%d %H:%M:%S UTC')
|
|
||||||
|
|
||||||
gh release create "$VERSION" "$ARTIFACT" \
|
gh release create "$VERSION" "$ARTIFACT" \
|
||||||
--title "Release $VERSION" \
|
--title "Release $VERSION" \
|
||||||
--notes "Commit: ${COMMIT}
|
--notes "Release Version: $VERSION | Commit: ${COMMIT}"
|
||||||
Platform: .NET 10
|
|
||||||
Build Time: ${BUILD_TIME}
|
|
||||||
|
|
||||||
Version Format: quant_YYYYMMDD.count.hash
|
|
||||||
Artifact: quantengine_${VERSION}.tar.gz"
|
|
||||||
|
|
||||||
echo "✓ Release created: $VERSION"
|
echo "✓ Release created: $VERSION"
|
||||||
echo "✓ Artifact attached: $ARTIFACT"
|
echo "✓ Artifact attached: $ARTIFACT"
|
||||||
|
|||||||
Reference in New Issue
Block a user