[feat]增加WinForm客户端例程,主要为了测试同步调用异步方法等场景
大石头
authored at
2024-11-23 22:58:12
NewLife.Remoting
name: publish
on:
push:
tags: [ v* ]
workflow_dispatch:
jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotNET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- name: Get Version
run: echo "VERSION=$(date '+%Y.%m%d')" >> $GITHUB_ENV
- name: Build
run: |
dotnet pack --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Remoting/NewLife.Remoting.csproj
dotnet pack --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Remoting.Extensions/NewLife.Remoting.Extensions.csproj
- name: Publish
run: |
dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ github.token }}
dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nugetKey }}
|