From 49e13fbdfb085e699c41a88f1f7f8d4608d298d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?furby=E2=84=A2?= Date: Fri, 27 Dec 2024 12:09:55 -0700 Subject: [PATCH] CI: build & bundle kraken with swift bundler. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: furby™ --- .github/workflows/swift-macos.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/swift-macos.yml b/.github/workflows/swift-macos.yml index c503d9ba..eca1fcc6 100644 --- a/.github/workflows/swift-macos.yml +++ b/.github/workflows/swift-macos.yml @@ -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