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 b42e61e commit bbad4ba
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 @@ -60,13 +60,13 @@ jobs:
- name: Restore NuGet
shell: pwsh
run: 'dotnet restore $env:PACKAGE_PROJECT_PATH'
run: dotnet restore ${{ env.PACKAGE_PROJECT_PATH }}

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

- name: Package Files UI Controls
run: dotnet pack ${{ PACKAGE_PROJECT_PATH }}.csproj --configuration Release --no-build -o ./output -p:Version=${{ steps.extract_version.outputs.version }}
run: dotnet pack ${{ env.PACKAGE_PROJECT_PATH }}.csproj --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 bbad4ba

Please sign in to comment.