-
Notifications
You must be signed in to change notification settings - Fork 9
28 lines (25 loc) · 897 Bytes
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: CI/CD on PR
on:
pull_request:
jobs:
pr:
strategy:
matrix:
include:
- unity-docker-image: unityci/editor:2022.3.12f1-webgl-3.0.0
service-name: asset-bundle-converter
platform-target: webgl
- unity-docker-image: unityci/editor:2022.3.12f1-windows-mono-3.0.0
service-name: asset-bundle-converter-windows
platform-target: windows
- unity-docker-image: unityci/editor:2022.3.12f1-mac-mono-3.0.0
service-name: asset-bundle-converter-mac
platform-target: mac
uses: ./.github/workflows/docker-common.yml
with:
service-name: ${{ matrix.service-name }}
unity-docker-image: ${{ matrix.unity-docker-image }}
platform-target: ${{ matrix.platform-target }}
upload-image: false
docker-tag: pr-${{ github.event.number }}
secrets: inherit