Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasMTElliott authored May 22, 2024
1 parent cb66ac9 commit 2a041f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
# Publish
- name: Echo Key
env:
SUPER_SECRET: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: echo $SKYWARDNUGETAPIKEY
SKYWARDNUGETAPIKEY: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: echo "$SKYWARDNUGETAPIKEY"
- name: Publish Packages
env:
SUPER_SECRET: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: cd publish && for fileName in *.nupkg; do echo ${fileName}; dotnet nuget push -k $SKYWARDNUGETAPIKEY -s https://api.nuget.org/v3/index.json ${fileName} || :; done
SKYWARDNUGETAPIKEY: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: cd publish && for fileName in *.nupkg; do echo ${fileName}; dotnet nuget push -k "$SKYWARDNUGETAPIKEY" -s https://api.nuget.org/v3/index.json ${fileName} || :; done
- name: Public Source Mapping
env:
SUPER_SECRET: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: cd publish && for fileName in *.snupkg; do echo ${fileName}; dotnet nuget push -k $SKYWARDNUGETAPIKEY -s https://api.nuget.org/v3/index.json ${fileName} || :; done
SKYWARDNUGETAPIKEY: ${{ secrets.SKYWARDNUGETAPIKEY }}
run: cd publish && for fileName in *.snupkg; do echo ${fileName}; dotnet nuget push -k "$SKYWARDNUGETAPIKEY" -s https://api.nuget.org/v3/index.json ${fileName} || :; done

0 comments on commit 2a041f7

Please sign in to comment.