Browse Source

调整编译发布脚本

v10
大石头 1 year ago
parent
commit
0f181dd022
  1. 8
      .github/workflows/publish-beta.yml
  2. 10
      .github/workflows/publish.yml

8
.github/workflows/publish-beta.yml

@ -25,14 +25,10 @@ jobs:
7.0.x
8.x
- name: Get Version
run: echo "VERSION=$(date '+%Y.%m%d-beta%H%M')" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
run: echo "VERSION=$(date '+%Y.%m%d-beta%H%M')" >> $GITHUB_ENV
- 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
dotnet pack --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 }}

10
.github/workflows/publish.yml

@ -19,15 +19,11 @@ jobs:
7.0.x
8.0.x
- name: Get Version
run: echo "VERSION=$(date '+%Y.%m%d')" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
run: echo "VERSION=$(date '+%Y.%m%d')" >> $GITHUB_ENV
- 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
dotnet pack --no-build --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Security\NewLife.Security.csproj
dotnet pack --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Core\NewLife.Core.csproj
dotnet pack --version-suffix ${{ env.VERSION }} -c Release -o out NewLife.Security\NewLife.Security.csproj
- name: Publish
run: |
dotnet nuget push .\out\*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ github.token }}

Loading…
Cancel
Save