Don't build ubuntu on PR as secrets are now needed. Update PR template to request an example successful run. Remove 32bit windows build. Build on push to any branch

pull/590/head
Andrew Kahr 2023-11-06 22:27:58 -08:00
parent 47c03e8104
commit cfbe5a1899
4 changed files with 7 additions and 10 deletions

View File

@ -10,6 +10,10 @@
- ... - ...
#### Successful Workflow Run Link
- ...
#### Checklist #### Checklist
<!-- please check all items and add your own --> <!-- please check all items and add your own -->

View File

@ -3,8 +3,6 @@ name: Builds - MacOS
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- main
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

View File

@ -3,11 +3,6 @@ name: Builds - Ubuntu
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- main
pull_request:
paths-ignore:
- '.github/**'
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -85,6 +80,9 @@ jobs:
# Build # # Build #
########################### ###########################
- uses: ./ - uses: ./
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with: with:
projectPath: ${{ matrix.projectPath }} projectPath: ${{ matrix.projectPath }}
unityVersion: ${{ matrix.unityVersion }} unityVersion: ${{ matrix.unityVersion }}

View File

@ -3,8 +3,6 @@ name: Builds - Windows
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches:
- main
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@ -26,7 +24,6 @@ jobs:
targetPlatform: targetPlatform:
- Android # Build an Android apk. - Android # Build an Android apk.
- StandaloneWindows64 # Build a Windows 64-bit standalone. - StandaloneWindows64 # Build a Windows 64-bit standalone.
- StandaloneWindows # Build a Windows 32-bit standalone.
- WSAPlayer # Build a UWP App - WSAPlayer # Build a UWP App
- tvOS # Build an Apple TV XCode project - tvOS # Build an Apple TV XCode project