-
-
Notifications
You must be signed in to change notification settings - Fork 1
27 lines (24 loc) · 699 Bytes
/
Build.yml
File metadata and controls
27 lines (24 loc) · 699 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
# ------------------------------------------------------------------------------
# Build.yml
# ------------------------------------------------------------------------------
name: Build
on:
push:
pull_request:
branches-ignore:
- master
- main
workflow_dispatch:
jobs:
Build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Run './build/build.cmd'
run: ./build/build.cmd --root ./build
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
SignFile: ${{ secrets.SIGN_FILE }}
SignPassword: ${{ secrets.SIGN_PASSWORD }}
InstallationFiles: ${{ secrets.INSTALLATION_FILES }}