We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f835c42 commit 5470d75Copy full SHA for 5470d75
.github/workflows/ci.yml
@@ -4,8 +4,8 @@ on:
4
push:
5
branches:
6
- main
7
- - release/*
8
pull_request:
+ workflow_dispatch: # e.g. to manually trigger on foreign PRs
9
10
env:
11
UNITY_VERSION: '6000.1.12f1'
@@ -76,4 +76,9 @@ jobs:
76
with:
77
name: Build-${{ matrix.targetPlatform }}
78
path: build
79
- retention-days: 14
+ retention-days: 14
80
+
81
+ run-demo:
82
+ name: Run Demo
83
+ needs: [build]
84
+ uses: ./.github/workflows/run-demo.yml
.github/workflows/run-demo.yml
@@ -1,15 +1,8 @@
1
name: Run Windows Build
2
3
on:
- workflow_run:
- workflows: ["Build Sentaur Survivors"]
- types:
- - completed
+ workflow_call:
workflow_dispatch:
- push:
- branches: [ main, develop ]
- pull_request:
12
- branches: [ main ]
13
14
jobs:
15
test-windows:
0 commit comments