From 8a95d01a725db7a0a81861c3d02872b5c13dfe09 Mon Sep 17 00:00:00 2001 From: Yehor Popovych Date: Tue, 29 Aug 2023 16:26:11 +0100 Subject: [PATCH] added submodules for checkout --- .github/workflows/deploy.yml | 4 +++- .github/workflows/test.yml | 8 ++++++-- README.md | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b1ba56e..f96ca3c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,7 +7,9 @@ jobs: runs-on: macOS-13 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + submodules: true - name: Select Xcode run: sudo xcode-select -s /Applications/Xcode_14.3.1.app - name: Set release version diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a3d06d0..8d14eab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,9 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + submodules: true - name: Select Xcode run: sudo xcode-select -s /Applications/Xcode_${{ matrix.tests.xcode }}.app - name: Build and Test SPM @@ -37,6 +39,8 @@ jobs: options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + submodules: true - name: Build and Test run: swift test diff --git a/README.md b/README.md index 67c1ec0..92121d3 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ Setup instructions: Add this to the dependency section of your `Package.swift` manifest: ```Swift - .package(url: "https://github.com/tesseract-one/CSecp256k1.swift.git", from: "0.1.0") + .package(url: "https://github.com/tesseract-one/CSecp256k1.swift.git", from: "0.2.0") ``` - **CocoaPods:** Put this in your `Podfile`: ```Ruby - pod 'CSecp256k1', '~> 0.1' + pod 'CSecp256k1', '~> 0.2' ``` ## Usage Examples