From 65bc518d82a54771d9e5f49f3f540dbe81291c49 Mon Sep 17 00:00:00 2001 From: wangjunzzz <> Date: Sat, 24 Jan 2026 10:23:17 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E8=B0=83=E6=95=B4github=20workflows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-image.yml | 2 +- .github/workflows/nuget.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index b195fd14..9ca140e8 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -2,7 +2,7 @@ name: Docker-Images on: push: tags: - - "*" + - "stop" jobs: api: diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index e68c5d68..e95b7281 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -9,17 +9,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install Dotnet 8.0.100 + - name: Install Dotnet 10.0.0 uses: actions/setup-dotnet@v1 with: - dotnet-version: 9.0.102 + dotnet-version: 10.0.0 include-prerelease: True - name: Setting Version id: vars run: echo ::set-output name=tag::${GITHUB_REF:10} - name: Build - run: dotnet build aspnet-core/Lion.AbpPro.sln + run: dotnet build aspnet-core/Lion.AbpPro.slnx - name: Pack - run: dotnet pack aspnet-core/Lion.AbpPro.sln --include-source --include-symbols /p:Configuration=Release -p:PackageVersion=${GITHUB_REF:10} --output nupkgs + run: dotnet pack aspnet-core/Lion.AbpPro.slnx --include-source --include-symbols /p:Configuration=Release -p:PackageVersion=${GITHUB_REF:10} --output nupkgs - name: Push run: dotnet nuget push nupkgs/*.symbols.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json