SDWebImage CD #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "SDWebImage CD" | |
| on: | |
| push: | |
| # Pattern matched against refs/tags | |
| tags: | |
| - '*' | |
| jobs: | |
| Release: | |
| name: Release XCFramework | |
| runs-on: macos-15 | |
| env: | |
| LC_ALL: en_US.UTF-8 | |
| CODESIGN_KEY_BASE64: "${{ secrets.CODESIGN_KEY_BASE64 }}" | |
| DEVELOPER_DIR: /Applications/Xcode_16.0.app | |
| XCODE_VERSION_MAJOR: 1600 | |
| XCODE_VERSION_MINOR: 1600 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| linkage: [dynamic, static] | |
| include: | |
| - linkage: dynamic | |
| MACH_O_TYPE: mh_dylib | |
| - linkage: static | |
| MACH_O_TYPE: staticlib | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Build XCFramework | |
| run: | | |
| set -o pipefail | |
| export MACH_O_TYPE="${{ matrix.MACH_O_TYPE }}" | |
| ./Scripts/build-frameworks.sh | |
| rm -rf ~/Library/Developer/Xcode/DerivedData/ | |
| - name: Create XCFramework | |
| run: | | |
| set -o pipefail | |
| export MACH_O_TYPE="${{ matrix.MACH_O_TYPE }}" | |
| ./Scripts/create-xcframework.sh | |
| ./Scripts/sign-xcframework.sh | |
| - name: Archive XCFramework | |
| run: | | |
| cd build | |
| zip -r -y SDWebImage-${{ matrix.linkage }}.xcframework.zip SDWebImage.xcframework | |
| cd ../ | |
| mv build/SDWebImage-${{ matrix.linkage }}.xcframework.zip SDWebImage-${{ matrix.linkage }}.xcframework.zip | |
| rm -rf build | |
| - uses: softprops/action-gh-release@v0.1.15 | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| GITHUB_REPOSITORY: "${{ github.repository }}" | |
| with: | |
| files: "SDWebImage-${{ matrix.linkage }}.xcframework.zip" |