-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (37 loc) · 901 Bytes
/
uopz.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
29
30
31
32
33
34
35
36
37
38
name: "UOPZ"
on:
workflow_dispatch:
schedule:
- cron: "5 2 * * 4"
jobs:
build:
name: Build
runs-on: windows-2019
strategy:
fail-fast: false
matrix:
version: ["8.2", "8.3"]
ts: ["ts", "nts"]
arch: ["x64"]
name: ["uopz"]
repo: ["krakjoe/uopz"]
enable: ["enable-uopz"]
include:
- ts: "ts"
release: "Release_TS"
- ts: "nts"
release: "Release"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run Builder
uses: ./.github/actions/build
with:
version: ${{ matrix.version }}
ts: ${{ matrix.ts }}
arch: ${{ matrix.arch }}
repo: ${{ matrix.repo }}
enable: ${{ matrix.enable }}
name: ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}