diff --git a/.github/workflows/xcodebuild-ios.yml b/.github/workflows/xcodebuild-ios.yml index 20dd548e5..d3cff20c8 100644 --- a/.github/workflows/xcodebuild-ios.yml +++ b/.github/workflows/xcodebuild-ios.yml @@ -2,17 +2,21 @@ name: iOS on: push: - branches: [ master ] + branches: + - 'master' + - 'release/**' pull_request: - branches: [ master ] + branches: + - 'master' + - 'release/**' jobs: build: name: build-and-test - runs-on: macos-latest + runs-on: macOS-latest strategy: - matrix: - scheme: ["CBL_ObjC", "CBL_Swift"] + matrix: + scheme: ["CBL_ObjC", "CBL_Swift"] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/xcodebuild-mac.yml b/.github/workflows/xcodebuild-mac.yml index b654733f8..4fe7f0446 100644 --- a/.github/workflows/xcodebuild-mac.yml +++ b/.github/workflows/xcodebuild-mac.yml @@ -1,12 +1,14 @@ name: macOS on: - push: - branches: - - master - pull_request: - branches: - - '**' + push: + branches: + - 'master' + - 'release/**' + pull_request: + branches: + - 'master' + - 'release/**' jobs: build: