Skip to content

Commit

Permalink
Merge pull request #206 from AsakusaRinne/auto_release_ci
Browse files Browse the repository at this point in the history
ci: fix error of pushing package.
  • Loading branch information
AsakusaRinne authored Oct 23, 2023
2 parents 37a306d + 114b3aa commit 335544a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
types: [ closed ]

env:
NUGET_API_TOKEN: ${{ SECRETS.LLAMA_SHARP_NUGET_KEY }}
NUGET_API_TOKEN: ${{ secrets.LLAMA_SHARP_NUGET_KEY }}
IS_MINOR: ${{contains(github.event.pull_request.labels.*.name, 'minor-release')}}
IS_PATCH: ${{contains(github.event.pull_request.labels.*.name, 'patch-release')}}

Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
path: './temp'

- name: Push LLamaSharp packages to nuget.org
run: dotnet nuget push ./temp/LLamaSharp*.nupkg --source https://www.nuget.org -k $NUGET_API_TOKEN --skip-duplicate
run: dotnet nuget push ./temp/LLamaSharp*.nupkg --source https://www.nuget.org -k "$NUGET_API_TOKEN" --skip-duplicate

0 comments on commit 335544a

Please sign in to comment.