-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Only compare major version of Premiere * Open latest version of PP with matching major version * Use latest MacOs runner image * Use github run number * Don't offset build number * Include project configfuration
- Loading branch information
Showing
3 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,14 @@ on: | |
jobs: | ||
build: | ||
name: Build and export default scheme using xcodebuild command | ||
runs-on: macos-10.15 | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Generate Build Number | ||
id: buildnumber | ||
uses: einaregilsson/build-number@v3 | ||
with: | ||
token: ${{secrets.github_token}} | ||
- name: Set Build Number | ||
run: | | ||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion Build ${BUILD_NUMBER}" "PlutoHelperAgent/Info.plist" | ||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion Build $GITHUB_RUN_NUMBER" "PlutoHelperAgent/Info.plist" | ||
- name: Test | ||
run: | | ||
xcodebuild test -project PlutoHelperAgent.xcodeproj -scheme PlutoHelperAgent -destination 'platform=OS X,arch=x86_64' | ||
|
@@ -43,7 +38,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: PlutoHelperAgent-${{ env.BUILD_NUMBER }} | ||
name: PlutoHelperAgent-${{ github.run_number }} | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: ./package/ | ||
# The desired behavior if no files are found using the provided path. | ||
|
This file contains 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
This file contains 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