-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 957 Bytes
/
linux.yml
File metadata and controls
40 lines (38 loc) · 957 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
name: Build Linux (IL2CPP)
on:
workflow_dispatch:
inputs:
notes:
type: string
description: Release Notes
upload-artifact:
description: "Get an artifact to download"
type: choice
default: 'false'
options:
- true
- false
release:
description: "Release Candidate"
type: choice
default: 'false'
options:
- true
- false
jobs:
build:
uses: starburst997/unity-github-actions/.github/workflows/linux.yml@v1
secrets: inherit
with:
runner: 'ubuntu-latest'
runner-extra: 'ubuntu-latest'
il2cpp: '1'
library: 'Library-Linux'
artifact: 'build-linux'
s3-folder: 'linux'
zip-suffix: '.linux.zip'
discord: 'Linux (IL2CPP)'
timeout: 45
notes: ${{ inputs.notes }}
release: ${{ inputs.release }}
upload-artifact: ${{ inputs.upload-artifact }}