We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63746d commit 7b22ff4Copy full SHA for 7b22ff4
.github/workflows/publish_release.yml
@@ -8,6 +8,7 @@ on:
8
env:
9
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
10
DOTNET_NOLOGO: true
11
+ SLEEP_DURATION: 10
12
13
jobs:
14
publish:
@@ -62,6 +63,8 @@ jobs:
62
63
- name: Publish FSharp.Data.GraphQL.Shared project to NuGet
64
run: |
65
dotnet nuget push nuget/FSharp.Data.GraphQL.Shared.${{env.VERSION}}.{nupkg,snupkg} -s "nuget.org" -k ${{secrets.NUGET_SECRET}} --skip-duplicate
66
+ # wait for the package to be available
67
+ sleep ${{env.SLEEP_DURATION}}
68
69
- name: Pack FSharp.Data.GraphQL.Client project
70
0 commit comments