Skip to content

Commit

Permalink
Migrate to macOS-10.15 + test release
Browse files Browse the repository at this point in the history
  • Loading branch information
p4checo committed May 8, 2021
1 parent c423d95 commit 4b2cab1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
env-details:
name: Environment details
runs-on: macOS-latest
runs-on: macOS-10.15
steps:
- name: xcode version
run: xcodebuild -version -sdk
Expand All @@ -37,7 +37,7 @@ jobs:
build-test:
name: Build and Test
runs-on: macOS-latest
runs-on: macOS-10.15
steps:
- name: git checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pod-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
main:
name: Pod Lint
runs-on: macOS-latest
runs-on: macOS-10.15
steps:
- name: git checkout
uses: actions/checkout@v2
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Release

on:
workflow_run:
workflows: ["CI", "SPM", "CocoaPods Lint"]
workflows: ["CI", "SwiftPM Integration", "CocoaPods Lint"]
types: [completed]

jobs:
deploy-github:
name: Deploy Github
runs-on: macOS-latest
if: startsWith(github.ref, 'refs/tags/') && ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: macOS-10.15
#if: startsWith(github.ref, 'refs/tags/') && ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: git checkout
uses: actions/checkout@v2
Expand All @@ -26,13 +26,14 @@ jobs:
with:
files: Alicerce.framework.zip
body: |
# Changes
# Changes (TEST)
- <!-- Insert changes here -->
draft: true

deploy-cocoapods:
name: Deploy CocoaPods
runs-on: macOS-latest
runs-on: macOS-10.15
if: startsWith(github.ref, 'refs/tags/') && ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: git checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
main:
name: SwiftPM Build
runs-on: macOS-latest
runs-on: macOS-10.15
steps:
- name: git checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 4b2cab1

Please sign in to comment.