Browse Source

Fix YAML syntax in CI workflow

Remove escaped backticks that caused YAML parser error on line 232.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
main v0.56.2
woikos 4 months ago
parent
commit
9e0e9d82f4
No known key found for this signature in database
  1. 8
      .gitea/workflows/go.yml

8
.gitea/workflows/go.yml

@ -226,7 +226,7 @@ jobs:
git fetch origin "refs/tags/${VERSION}:refs/tags/${VERSION}" --force 2>/dev/null || true git fetch origin "refs/tags/${VERSION}:refs/tags/${VERSION}" --force 2>/dev/null || true
# Create the release body # Create the release body
RELEASE_BODY="## ORLY Release ${VERSION} RELEASE_BODY='## ORLY Release '"${VERSION}"'
### Binaries Included ### Binaries Included
- **orly** - Main relay binary - **orly** - Main relay binary
@ -246,9 +246,9 @@ jobs:
### Installation ### Installation
1. Download the appropriate binaries for your architecture 1. Download the appropriate binaries for your architecture
2. Make them executable: \`chmod +x orly-*\` 2. Make them executable: chmod +x orly-*
3. Copy libsecp256k1 to \`/usr/local/lib/\` and run \`ldconfig\` 3. Copy libsecp256k1 to /usr/local/lib/ and run ldconfig
4. Run with: \`./orly-launcher\` (for split mode) or \`./orly\` (standalone)" 4. Run with: ./orly-launcher (for split mode) or ./orly (standalone)'
# Create release JSON payload # Create release JSON payload
RELEASE_JSON=$(jq -n \ RELEASE_JSON=$(jq -n \

Loading…
Cancel
Save