diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae86382c..046b2f5e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,11 +30,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Decrypt tests config - run: | - set -o pipefail - openssl aes-256-cbc -K $ENCRYPTION_KEY -iv $ENCRYPTION_IV -in config.tar.enc -out config.tar -d - tar xvf config.tar - mv TestConfig.plist Tests/Swift/Data/TestConfig.plist + run: ./decrypt-config.sh - name: Prepare Dependencies env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -57,6 +53,9 @@ jobs: runs-on: macOS-12 steps: - uses: actions/checkout@v2 + - name: Decrypt tests config + run: ./decrypt-config.sh + - name: SPM test - run: brew install coreutils # install 'timeout' utility - run: swift --version - run: timeout 5m bash -c 'until swift build; do rm -fr .build && sleep 10; done' # fix for Swift Package Manager when it fails to download binary targets diff --git a/CI/decrypt-config.sh b/CI/decrypt-config.sh new file mode 100755 index 00000000..84983151 --- /dev/null +++ b/CI/decrypt-config.sh @@ -0,0 +1,3 @@ +openssl aes-256-cbc -K $ENCRYPTION_KEY -iv $ENCRYPTION_IV -in config.tar.enc -out config.tar -d +tar xvf config.tar +mv TestConfig.plist Tests/Swift/Data/TestConfig.plist \ No newline at end of file diff --git a/VirgilSDK.podspec b/VirgilSDK.podspec index 6a378a07..1783ebed 100644 --- a/VirgilSDK.podspec +++ b/VirgilSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "VirgilSDK" - s.version = "8.0.1" + s.version = "8.1.0" s.swift_version = "5.0" s.license = { :type => "BSD", :file => "LICENSE" } s.summary = "Virgil SDK for Apple devices and languages." diff --git a/VirgilSDK/Info.plist b/VirgilSDK/Info.plist index 118f98db..b9ce868f 100644 --- a/VirgilSDK/Info.plist +++ b/VirgilSDK/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 8.0.1 + 8.1.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/config.tar.enc b/config.tar.enc index c22dcef4..74f52601 100644 Binary files a/config.tar.enc and b/config.tar.enc differ