Skip to content

Commit 5574455

Browse files
committed
Code Quality: Fixed nuget restore
1 parent 7f17141 commit 5574455

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

.github/workflows/cd-sideload-preview.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ jobs:
8484
-p:PublishReadyToRun=true `
8585
-v:quiet
8686
87+
- name: Restore NuGet Packages for Launcher Project
88+
shell: pwsh
89+
run: |
90+
nuget restore "$env:LAUNCHER_PROJECT_PATH" `
91+
-SolutionDirectory "$env:WORKING_DIR" `
92+
-Verbosity detailed
93+
8794
- name: Build launcher project
8895
shell: pwsh
8996
run: |

.github/workflows/cd-sideload-stable.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ jobs:
8383
-p:Configuration=$env:CONFIGURATION `
8484
-p:PublishReadyToRun=true `
8585
-v:quiet
86+
87+
- name: Restore NuGet Packages for Launcher Project
88+
shell: pwsh
89+
run: |
90+
nuget restore "$env:LAUNCHER_PROJECT_PATH" `
91+
-SolutionDirectory "$env:WORKING_DIR" `
92+
-Verbosity detailed
8693
8794
- name: Build launcher project
8895
shell: pwsh

.github/workflows/cd-store-preview.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
shell: cmd
7171
run: |
7272
for /f %%a in ('dir /b /a:d %localappdata%\Microsoft\VisualStudio\17*') do echo UsePreviews=True>%localappdata%\Microsoft\VisualStudio\%%a\sdk.txt
73-
73+
7474
- name: Restore Files
7575
shell: pwsh
7676
run: |
@@ -81,6 +81,13 @@ jobs:
8181
-p:PublishReadyToRun=true `
8282
-v:quiet
8383
84+
- name: Restore NuGet Packages for Launcher Project
85+
shell: pwsh
86+
run: |
87+
nuget restore "$env:LAUNCHER_PROJECT_PATH" `
88+
-SolutionDirectory "$env:WORKING_DIR" `
89+
-Verbosity detailed
90+
8491
- name: Build launcher project
8592
shell: pwsh
8693
run: |
@@ -109,7 +116,7 @@ jobs:
109116
run: find $ARTIFACTS_STAGING_DIR -empty -delete
110117

111118
- name: Publish the packages to Microsoft Store
112-
uses: isaacrlevin/windows-store-action@1
119+
uses: isaacrlevin/windows-store-action@1.0
113120
with:
114121
app-id: '9NSQD9PKV3SS'
115122
tenant-id: ${{ secrets.AZURE_TENANT_ID }}

.github/workflows/cd-store-stable.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ jobs:
8181
-p:PublishReadyToRun=true `
8282
-v:quiet
8383
84+
- name: Restore NuGet Packages for Launcher Project
85+
shell: pwsh
86+
run: |
87+
nuget restore "$env:LAUNCHER_PROJECT_PATH" `
88+
-SolutionDirectory "$env:WORKING_DIR" `
89+
-Verbosity detailed
90+
8491
- name: Build launcher project
8592
shell: pwsh
8693
run: |

0 commit comments

Comments
 (0)