From c91d552fd9b2c6fd4551fe6830c232d3c5d60a40 Mon Sep 17 00:00:00 2001 From: pdtfh <149602456+pdtfh@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:06:18 +0100 Subject: [PATCH] fix swift release with Sources folder --- .github/workflows/release.yml | 3 ++- Cargo.lock | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db2def33..ba320ea7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -88,6 +88,7 @@ jobs: git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" git add walletkit-core/Cargo.toml + git add Cargo.lock git commit -m "Bump crate version to ${{ steps.version.outputs.new_version }}" git push @@ -146,7 +147,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }} run: | cp -r WalletKitCore.xcframework target-repo/ - cp -r Sources/ target-repo/ + cp -r Sources/ target-repo/Sources cp Package.swift target-repo/ cd target-repo git config --global user.email "github-actions[bot]@users.noreply.github.com" diff --git a/Cargo.lock b/Cargo.lock index ed2f21c7..5f5fa40f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -627,7 +627,7 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "walletkit-core" -version = "0.0.1" +version = "0.0.5" dependencies = [ "uniffi", ]