We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acacde1 commit 52a0103Copy full SHA for 52a0103
1 file changed
.github/workflows/release.yml
@@ -19,7 +19,13 @@ jobs:
19
run: dotnet build --configuration Release /p:Version=${VERSION}
20
- name: Test
21
run: dotnet test --configuration Release /p:Version=${VERSION} --no-build
22
- - name: Publish FroniusSolarClient
+ - name: Pack
23
+ run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
24
+ - name: Push
25
+ run: dotnet nuget push FroniusSolarClient.Core.${VERSION}.nupkg --source https://nuget.pkg.github.com/acraven/index.json --api-key ${GITHUB_TOKEN}
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
+ - name: Publish FroniusSolarClient nuget
29
uses: brandedoutcast/publish-nuget@v2.5.2
30
with:
31
PROJECT_FILE_PATH: FroniusSolarClient/FroniusSolarClient.csproj
0 commit comments