Skip to content

Bump version to 0.4.9 #56

Bump version to 0.4.9

Bump version to 0.4.9 #56

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macos-26
timeout-minutes: 20
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Show Xcode version
run: xcodebuild -version
- name: Run test suite
run: |
xcodebuild test \
-project Octodot.xcodeproj \
-scheme Octodot \
-destination 'platform=macOS,arch=arm64' \
-derivedDataPath .deriveddata \
CURRENT_PROJECT_VERSION="${{ github.run_number }}"
- name: Verify Release build
run: |
xcodebuild build \
-project Octodot.xcodeproj \
-scheme Octodot \
-configuration Release \
-destination 'generic/platform=macOS' \
-derivedDataPath .deriveddata-release \
CURRENT_PROJECT_VERSION="${{ github.run_number }}"