File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ jobs:
60
60
61
61
- name : Restore NuGet
62
62
shell : pwsh
63
- run : ' dotnet restore $env: PACKAGE_PROJECT_PATH'
63
+ run : dotnet restore ${{ env. PACKAGE_PROJECT_PATH }}
64
64
65
65
- name : Build Files UI Controls
66
66
run : dotnet build ${{ matrix.project }}.csproj --configuration Release --no-restore
67
67
68
68
- 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 }}
70
70
71
71
- name : Publish package to NuGet
72
72
run : dotnet nuget push ./output/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments