Skip to content

Commit

Permalink
Update cd-controls.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter authored Dec 17, 2024
1 parent e623e59 commit cc9d35e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-controls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
run: dotnet restore ${{ env.PACKAGE_PROJECT_PATH }}

- name: Build Files UI Controls
run: dotnet build ${{ env.PACKAGE_PROJECT_PATH }}.csproj --configuration Release --no-restore
run: dotnet build ${{ env.PACKAGE_PROJECT_PATH }} --configuration Release --no-restore

- name: Package Files UI Controls
run: dotnet pack ${{ env.PACKAGE_PROJECT_PATH }}.csproj --configuration Release --no-build -o ./output -p:Version=${{ steps.extract_version.outputs.version }}
run: dotnet pack ${{ env.PACKAGE_PROJECT_PATH }} --configuration Release --no-build -o ./output -p:Version=${{ steps.extract_version.outputs.version }}

- name: Publish package to NuGet
run: dotnet nuget push ./output/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit cc9d35e

Please sign in to comment.