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.
23 lines
455 B
23 lines
455 B
name: Build NuGet Package |
|
|
|
on: [workflow_dispatch] |
|
|
|
env: |
|
BUILD_TYPE: Release |
|
|
|
jobs: |
|
build: |
|
runs-on: windows-latest |
|
|
|
steps: |
|
- uses: actions/checkout@v2 |
|
|
|
- name: Checkout submodules |
|
run: git submodule update --init |
|
|
|
- name: Build Package |
|
run: . .\build.ps1; BuildNuGetPackage -BuildType "Release" -Arch "x64" -Version "$(cat .\pkg\nuget\version.in)" |
|
|
|
- uses: actions/upload-artifact@v2 |
|
with: |
|
path: dist
|
|
|