Skip to content

升级组件

升级组件 #16

Workflow file for this run

name: publish-beta
on:
push:
branches: [ master ]
jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore
run: |
dotnet restore
- name: Build
run: |
dotnet build --no-restore -c Release
- name: Test
run: |
dotnet test --no-build
- name: Pack
run: |
dotnet pack --no-restore --version-suffix $(date "+%Y.%m%d-beta%H%M") -c Release -o out NewLife.UnitTest/NewLife.UnitTest.csproj
- name: Publish
run: |
dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nugetKey }}