Skip to content

Commit 3ac99ef

Browse files
committed
try package upload workaround
1 parent 35052f6 commit 3ac99ef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/branches-ubuntu.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,8 @@ jobs:
8686
env:
8787
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
8888
- name: Publish the package to GPR
89-
run: cd ./nupkg && dotnet nuget push *.nupkg -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
89+
run: |
90+
for f in ./nupkg/*.nupkg
91+
do
92+
curl -vX PUT -u "graphql-dotnet:${{ secrets.GHPackagesToken }}" -F package=@$f https://nuget.pkg.github.com/graphql-dotnet/
93+
done

0 commit comments

Comments
 (0)