You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
# ------------------------------------------------------------------------------
|
|
# <auto-generated>
|
|
#
|
|
# This code was generated.
|
|
#
|
|
# - To turn off auto-generation set:
|
|
#
|
|
# [GitHubActions (AutoGenerate = false)]
|
|
#
|
|
# - To trigger manual generation invoke:
|
|
#
|
|
# nuke --generate-configuration GitHubActions_CI --host GitHubActions
|
|
#
|
|
# </auto-generated>
|
|
# ------------------------------------------------------------------------------
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
- 'release*'
|
|
|
|
jobs:
|
|
windows-latest:
|
|
name: windows-latest
|
|
runs-on: windows-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: 'Run: Clean, Test, Pack'
|
|
run: ./build.cmd Clean Test Pack
|
|
- name: 'Publish: publish'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: publish
|
|
path: publish
|
|
ubuntu-latest:
|
|
name: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: 'Run: Clean, Test, Pack'
|
|
run: ./build.cmd Clean Test Pack
|
|
- name: 'Publish: publish'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: publish
|
|
path: publish
|