mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-12-02 03:47:48 +08:00
update action
This commit is contained in:
parent
cbff2e3f71
commit
ca081b47d4
50
.github/workflows/build.yml
vendored
Normal file
50
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
name: Nuget
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Setup Nuget.exe
|
||||
uses: nuget/setup-nuget@master
|
||||
|
||||
- name: Restore Nuget packages
|
||||
run: nuget restore src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj
|
||||
|
||||
- name: Setup MSBuild.exe
|
||||
uses: microsoft/setup-msbuild@master
|
||||
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@master
|
||||
|
||||
- name: Build Net_40
|
||||
run: msbuild src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj -p:Configuration=Release
|
||||
|
||||
- name: Build Net_45
|
||||
run: msbuild src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj -p:Configuration=Release-Net45
|
||||
|
||||
- name: Build Net_462
|
||||
run: msbuild src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj -p:Configuration=Release-Net462
|
||||
|
||||
- name: Build Net_47
|
||||
run: msbuild src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj -p:Configuration=Release-Net47
|
||||
|
||||
- name: Build Net_48
|
||||
run: msbuild src/Net_GE45/HandyControl_Net_GE45/HandyControl_Net_GE45.csproj -p:Configuration=Release-Net48
|
||||
|
||||
- name: Build Core_30
|
||||
run: dotnet build src/Core_GE30/HandyControl_Core_GE30/HandyControl_Core_GE30.csproj --configuration Release-Core30
|
||||
|
||||
- name: Build Core_31
|
||||
run: dotnet build src/Core_GE30/HandyControl_Core_GE30/HandyControl_Core_GE30.csproj --configuration Release-Core31
|
16
.github/workflows/nuget.yml
vendored
16
.github/workflows/nuget.yml
vendored
@ -1,16 +0,0 @@
|
||||
name: Nuget
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@2.0.
|
||||
- name: Build the Docker image
|
||||
run: docker build -f Dockerfile -t HandyOrg/hcbuild .
|
||||
- name: Run the Docker image
|
||||
run: docker run --rm HandyOrg/hcbuild --version
|
Loading…
Reference in New Issue
Block a user