Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ jobs:
with:
xcode-version: latest-stable

# SwiftPM fetches Sparkle's ~11 MB binary artifact here. Do it before the
# keychain and notary steps: two v0.1.0 attempts stalled 20+ minutes on
# this exact download inside build-release.sh, while CI's plain
# `swift build` fetched it in 24s on the same runner image. Bounded, so a
# stall costs 8 minutes instead of the whole 45-minute job.
- name: Resolve dependencies
timeout-minutes: 8
run: swift package resolve

- name: Resolve version
id: v
env:
Expand Down Expand Up @@ -127,6 +136,7 @@ jobs:
rm -f "$RUNNER_TEMP/notary.p8"

- name: Build, sign, notarize
timeout-minutes: 25
env:
VERSION: ${{ steps.v.outputs.version }}
APP_IDENTITY: ${{ secrets.APP_IDENTITY }}
Expand Down
Loading