Skip to content

Commit 6ed1008

Browse files
committed
Update cd-controls.yml
1 parent 71de3ae commit 6ed1008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cd-controls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
6161
- name: Restore NuGet
6262
shell: pwsh
63-
run: 'dotnet restore $env:PACKAGE_PROJECT_PATH'
63+
run: dotnet restore ${{ env.PACKAGE_PROJECT_PATH }}
6464

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

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

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

0 commit comments

Comments
 (0)