From 970fbb5bad7027dac14cfac9942a46a768b529e9 Mon Sep 17 00:00:00 2001 From: pdtfh <149602456+pdtfh@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:18:50 +0100 Subject: [PATCH] fix swift release with Sources folder (#10) --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"