Skip to content

feat: 机器信息MachineInfo增加Vendor供应商字段 #4

feat: 机器信息MachineInfo增加Vendor供应商字段

feat: 机器信息MachineInfo增加Vendor供应商字段 #4

Workflow file for this run

name: publish-beta
on:
push:
branches: [ master ]
paths:
- 'NewLife.Core/**'
pull_request:
branches: [ master ]
paths:
- 'NewLife.Core/**'
workflow_dispatch:
jobs:
build-publish:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup dotNET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.306
- name: Get Version
run: echo "VERSION=$(date '+%Y.%m%d-beta%H%M')" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Build
run: |
dotnet build -c Release --version-suffix ${{ env.VERSION }}
- name: Pack
run: |
dotnet pack --no-build --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Core\NewLife.Core.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 }}