Skip to content

Keep dropdown status menus open before rehiding #42

Keep dropdown status menus open before rehiding

Keep dropdown status menus open before rehiding #42

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
jobs:
macos:
# Liquid Glass and Icon Composer require the macOS 26 SDK.
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Verify Xcode 26 toolchain
shell: bash
run: |
set -euo pipefail
xcode_version="$(xcodebuild -version)"
printf '%s\n' "$xcode_version"
grep -Eq '^Xcode 26[.]' <<< "$xcode_version"
- name: Validate metadata and scripts
run: |
plutil -lint OverflowBar/Resources/Info.plist
bash -n scripts/create-dmg.sh
ruby scripts/check-doc-links.rb
- name: Build Debug
run: >-
xcodebuild -project OverflowBar.xcodeproj -scheme OverflowBar
-configuration Debug -destination 'generic/platform=macOS'
-derivedDataPath .ci-build CODE_SIGNING_ALLOWED=NO build
- name: Build Release
run: >-
xcodebuild -project OverflowBar.xcodeproj -scheme OverflowBar
-configuration Release -destination 'generic/platform=macOS'
-derivedDataPath .ci-release CODE_SIGNING_ALLOWED=NO build