Update Test App #13
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
name: Update Test App | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Release"] | |
types: | |
- completed | |
jobs: | |
updateTestApp: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.1.0' | |
- name: Build Test App | |
run: | | |
set -eo pipefail | |
echo Building Test App | |
make build-test-apps | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: Update test app with new release ${{ github.event.release.tag_name }} | |
title: Update Test App | |
body: updates the test app with new release ${{ github.event.release.tag_name }} | |
branch: update-test-app | |
base: main | |