Skip to content

Commit

Permalink
Fix CI publish script (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 authored May 19, 2021
1 parent 1767d7a commit ca9b18c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
dotnet-version: '5.0.x'
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}}
NUGET_AUTH_TOKEN: ${{secrets.RELAY_NUGET_TOKEN}}
- name: Install dependencies
run: dotnet restore
- name: Build solution [Release]
Expand All @@ -47,7 +47,7 @@ jobs:
path: |
out/*
- name: Publish Nuget packages to Nuget registry
run: dotnet nuget push "out/*" -k ${{secrets.NUGET_AUTH_TOKEN}}
run: dotnet nuget push "out/*" -k ${{secrets.RELAY_NUGET_TOKEN}}
- name: Upload Nuget packages as release artifacts
uses: actions/github-script@v2
with:
Expand Down

0 comments on commit ca9b18c

Please sign in to comment.