Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
ci: fix Android builds
Browse files Browse the repository at this point in the history
  • Loading branch information
einsteinx2 committed Mar 23, 2022
1 parent c5110f5 commit 9e168fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on:

jobs:
Build:
runs-on: macos-latest
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- name: Build artifacts
run: ./build.sh

Android:
runs-on: macos-latest
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- name: Android
Expand All @@ -22,7 +22,7 @@ jobs:
msbuild
iOS:
runs-on: macos-latest
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- name: iOS
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Currently this workflow does not automatically pull in changes from internal or create a git tag or Github "Release". First
# make sure to manually create a release commit in internal/master updating the version number in the `Library/mparticle.nuspec`
# file. Then push internal/master to public/master and run this workflow from public/master to build and release to nuget.
# After it's released to nuget, manually create a tag and "Release" in the public repo pointing to the release commit.
# Currently this workflow does not automatically pull in changes from development or create a git tag or Github "Release". First
# make sure to manually create a release commit in master updating the version number in the `Library/mparticle.nuspec`
# file. Then run this workflow from master to build and release to nuget. After it's released to nuget, manually create a tag
# and Github "Release" in the public repo pointing to the release commit.

name: Release SDK

Expand Down Expand Up @@ -29,7 +29,7 @@ jobs:
release-to-nuget:
name: Release and Sync Repos
runs-on: macos-latest
runs-on: macos-10.15
needs: ['confirm-master-branch']
steps:
- name: Git checkout
Expand Down

0 comments on commit 9e168fe

Please sign in to comment.