Skip to content

Commit

Permalink
CI: build & bundle kraken with swift bundler.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Dec 27, 2024
1 parent c9dd432 commit 49e13fb
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/swift-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ jobs:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-14]
swift: ["5.10"]
os: [macos-15]
swift: ["6.0.2"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: 📦 Build
run: swift build -c release --target Kraken
- name: 🦦 Install Swift Bundler
run: |
curl -o swift-bundler -L https://github.com/wabiverse/wabi-swift-bundler/releases/download/v3.0.1/swift-bundler
chmod +x ./swift-bundler
sudo cp ./swift-bundler /usr/local/bin/
rm ./swift-bundler
- name: 📦 Build & Bundle
run: swift bundler bundle -c release --xcodebuild

0 comments on commit 49e13fb

Please sign in to comment.