Skip to content

Commit 104c0c5

Browse files
github-actions[bot]shreyavjklein24mgorvenrunner
authored
Merge release/lightspark-sdk-v0.14.0 into main (#183)
* lnurlp fallback * annotation and tests * fallback sender side * fix serialization * unused import * comments * fixes * Try to fix docs publish job my running on main * [gha] Use environment for doc-publish * Fix sender vasp utxo callback * Switch to a full 64bit nonce * Use json for parsing in demo vasp (#163) * Update the demo VASP's SDK version to 0.8.0 * Update the demo VASP's SDK version to 0.8.1 * Accept gzip responses, compress request with deflate (#172) Install `ContentEncoding` plugin to handle gzip responses. Compress requests larger than 1K using `Deflater`. Change `addSigningDataIfNeeded()` to return serialised bytes so that we only serialise once. * Regenerate SDK (#173) * Regenerate SDK * no op vls * Update macos environment version (#175) * Uma data visibility (#174) * fix typo (#176) * encode hex (#177) * Bump lightspark-sdk to version 0.14.0 * Load signing key * Revert "Merge release/lightspark-sdk-v0.14.0 into develop" (#181) * Bump lightspark-sdk to version 0.14.0 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: shreyav <[email protected]> Co-authored-by: Jeremy Klein <[email protected]> Co-authored-by: Michael Gorven <[email protected]> Co-authored-by: Michael Gorven <[email protected]> Co-authored-by: runner <[email protected]> Co-authored-by: runner <[email protected]>
1 parent 64e7e5e commit 104c0c5

File tree

159 files changed

+2158
-560
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+2158
-560
lines changed

.github/workflows/core-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
build:
22-
runs-on: macos-11
22+
runs-on: macos-12
2323

2424
steps:
2525
- uses: actions/checkout@v3

.github/workflows/core-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish-core-sdk:
99
if: ${{ startsWith(github.event.release.tag_name, 'core-') }}
10-
runs-on: macos-11
10+
runs-on: macos-12
1111

1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/crypto-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
build:
2222
# No point in running this build on a core cut because it will fail until the deploy is done.
2323
if: github.event.base_ref == null || !startsWith(github.event.base_ref, 'release/core-')
24-
runs-on: macos-11
24+
runs-on: macos-12
2525

2626
steps:
2727
- uses: actions/checkout@v3

.github/workflows/crypto-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish-crypto-sdk:
99
if: ${{ startsWith(github.event.release.tag_name, 'crypto-') }}
10-
runs-on: macos-11
10+
runs-on: macos-12
1111

1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/docs-publish.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Publish SDK Docs
22

33
on:
4+
workflow_dispatch: {}
45
workflow_run:
56
workflows:
67
[
@@ -15,13 +16,16 @@ on:
1516
jobs:
1617
publish-docs:
1718
if: ${{ github.event.workflow_run.conclusion == 'success' }}
18-
runs-on: macos-11
19+
runs-on: macos-12
20+
environment: "docs"
1921
permissions:
2022
id-token: write
2123
contents: read
2224

2325
steps:
2426
- uses: actions/checkout@v3
27+
with:
28+
ref: "main"
2529
- name: Set up JDK 17
2630
uses: actions/setup-java@v3
2731
with:

.github/workflows/lightspark-sdk-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build:
2424
# No point in running this build on a core cut because it will fail until the deploy is done.
2525
if: github.event.base_ref == null || !startsWith(github.event.base_ref, 'release/core-')
26-
runs-on: macos-11
26+
runs-on: macos-12
2727

2828
steps:
2929
- uses: actions/checkout@v3

.github/workflows/lightspark-sdk-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish-lightspark-sdk:
99
if: ${{ startsWith(github.event.release.tag_name, 'lightspark-sdk-') }}
10-
runs-on: macos-11
10+
runs-on: macos-12
1111

1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/release-branch-cut.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
bump-versions:
10-
runs-on: macos-11
10+
runs-on: macos-12
1111
permissions:
1212
contents: write
1313
pull-requests: write

.github/workflows/wallet-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build:
2424
# No point in running this build on a core cut because it will fail until the deploy is done.
2525
if: github.event.base_ref == null || !startsWith(github.event.base_ref, 'release/core-')
26-
runs-on: macos-11
26+
runs-on: macos-12
2727

2828
steps:
2929
- uses: actions/checkout@v3

.github/workflows/wallet-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish-wallet-sdk:
99
if: ${{ startsWith(github.event.release.tag_name, 'wallet-sdk-') }}
10-
runs-on: macos-11
10+
runs-on: macos-12
1111

1212
steps:
1313
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)