This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/.github/workflows/nuget.yml
2021-03-19 23:11:45 -07:00

24 lines
455 B
YAML

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