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 e6073a4 commit 6d57a88Copy full SHA for 6d57a88
.github/workflows/release.yml
@@ -25,8 +25,14 @@ jobs:
25
repo-token: ${{ secrets.GITHUB_TOKEN }}
26
wait-interval: 10
27
28
+ - name: Restore dependencies
29
+ run: dotnet restore
30
+
31
+ - name: Build
32
+ run: dotnet build ./Postgrest/Postgrest.csproj --configuration Release --no-restore
33
34
- name: Generate package
- run: dotnet pack --configuration Release
35
+ run: dotnet pack ./Postgrest/Postgrest.csproj --configuration Release
36
37
- name: Publish on version change
38
run: dotnet nuget push "**/*.nupkg" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
0 commit comments