Skip to content

Commit 87e3d4a

Browse files
committed
fix: publish ldk rc50 symbols
1 parent ce5a0d2 commit 87e3d4a

11 files changed

Lines changed: 23 additions & 20 deletions

File tree

.github/workflows/publish-android.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
inputs:
88
version:
9-
description: "Version to publish (e.g., v0.1.0)"
9+
description: "Version/tag to publish (e.g., v0.7.0-rc.50 or 0.7.0-rc.50)"
1010
required: true
1111

1212
jobs:
@@ -17,9 +17,21 @@ jobs:
1717
packages: write
1818

1919
steps:
20+
- name: Normalize release version
21+
id: version
22+
shell: bash
23+
run: |
24+
VERSION="${{ github.event.inputs.version || github.event.release.tag_name || github.ref_name }}"
25+
TAG="$VERSION"
26+
if [[ "$TAG" != v* ]]; then
27+
TAG="v$TAG"
28+
fi
29+
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
30+
echo "version=${TAG#v}" >> "$GITHUB_OUTPUT"
31+
2032
- uses: actions/checkout@v4
2133
with:
22-
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.version || github.event.release.tag_name }}
34+
ref: ${{ steps.version.outputs.tag }}
2335
- name: Set up JDK 17
2436
uses: actions/setup-java@v4
2537
with:
@@ -47,16 +59,6 @@ jobs:
4759
- name: Export Android NDK root
4860
run: echo "ANDROID_NDK_ROOT=${{ steps.setup-ndk.outputs.ndk-path }}" >> "$GITHUB_ENV"
4961

50-
- name: Extract version from input or tag
51-
id: version
52-
shell: bash
53-
run: |
54-
VERSION="${{ inputs.version }}"
55-
if [[ -z "$VERSION" ]]; then
56-
VERSION="$GITHUB_REF_NAME"
57-
fi
58-
echo "version=${VERSION#v}" >> "$GITHUB_OUTPUT"
59-
6062
- name: Generate Android bindings
6163
run: scripts/uniffi_bindgen_generate_kotlin_android.sh
6264

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.7.0-rc.49 (Synonym Fork)
1+
# 0.7.0-rc.50 (Synonym Fork)
22

33
## Bug Fixes
44

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exclude = ["bindings/uniffi-bindgen"]
44

55
[package]
66
name = "ldk-node"
7-
version = "0.7.0-rc.49"
7+
version = "0.7.0-rc.50"
88
authors = ["Elias Rohrer <dev@tnull.de>"]
99
homepage = "https://lightningdevkit.org/"
1010
license = "MIT OR Apache-2.0"

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import PackageDescription
55

6-
let tag = "v0.7.0-rc.49"
7-
let checksum = "afadaec20a4d580b877282da609d7882233a8a1137f8cb621c894892aa3dbaae"
6+
let tag = "v0.7.0-rc.50"
7+
let checksum = "a0ce965c41e971050521cb99658692ef8991dcc7133748bdbd6c74db9657dc85"
88
let url = "https://github.com/synonymdev/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"
99

1010
let package = Package(

bindings/kotlin/ldk-node-android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
55
group=com.synonym
6-
version=0.7.0-rc.49
6+
version=0.7.0-rc.50
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.jvmargs=-Xmx1536m
22
kotlin.code.style=official
33
group=com.synonym
4-
version=0.7.0-rc.49
4+
version=0.7.0-rc.50

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ldk_node"
3-
version = "0.7.0-rc.49"
3+
version = "0.7.0-rc.50"
44
authors = [
55
{ name="Elias Rohrer", email="dev@tnull.de" },
66
]

0 commit comments

Comments
 (0)