SDWebImage CD #1
This file contains 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: | |
workflow_dispatch: | |
# Pattern matched against refs/tags | |
# tags: | |
#- '*' | |
jobs: | |
Release: | |
name: Release XCFramework | |
runs-on: macos-14 | |
env: | |
CODESIGN_KEY_BASE64: "${{ secrets.CODESIGN_KEY_BASE64 }}" | |
DEVELOPER_DIR: /Applications/Xcode_15.2.app | |
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/[email protected] | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
GITHUB_REPOSITORY: "${{ github.repository }}" | |
with: | |
files: "SDWebImage-${{ matrix.linkage }}.xcframework.zip" |