参数路径补全以下代码发生致命错误,命令行中的参数非常灵活,可能是各种字符串,在不确定它是路径之前,贸然补全路径可能会引发更多问题。http… #213
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-beta | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'Stardust/**' | |
- 'Stardust.Extensions/**' | |
workflow_dispatch: | |
jobs: | |
build-publish: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotNET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
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 | |
- name: Build | |
run: | | |
dotnet build -c Release --version-suffix ${{ env.VERSION }} | |
- name: Pack | |
run: | | |
dotnet pack --no-build --version-suffix ${{ env.VERSION }} -o out Stardust\Stardust.csproj | |
dotnet pack --no-build --version-suffix ${{ env.VERSION }} -o out Stardust.Extensions\Stardust.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 }} |