Fix global hover cursor regression #10
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| # Build release artifacts with the SDK that contains Liquid Glass and Icon Composer. | |
| 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 tag and app version | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| app_version=$(/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' OverflowBar/Resources/Info.plist) | |
| test "${GITHUB_REF_NAME}" = "v${app_version}" | |
| plutil -lint OverflowBar/Resources/Info.plist | |
| bash -n scripts/create-dmg.sh | |
| - name: Build release DMG | |
| run: ./scripts/create-dmg.sh | |
| - name: Verify release artifacts | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| version="${GITHUB_REF_NAME#v}" | |
| hdiutil verify "dist/OverflowBar-${version}.dmg" | |
| (cd dist && shasum -a 256 -c "OverflowBar-${version}.dmg.sha256") | |
| - name: Publish GitHub Release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| version="${GITHUB_REF_NAME#v}" | |
| gh release create "${GITHUB_REF_NAME}" \ | |
| "dist/OverflowBar-${version}.dmg" \ | |
| "dist/OverflowBar-${version}.dmg.sha256" \ | |
| --title "OverflowBar ${version}" \ | |
| --notes-file RELEASE_NOTES.md \ | |
| --verify-tag |