We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb69c2 commit 8eba500Copy full SHA for 8eba500
.github/actions/setup-gdk/action.yml
@@ -27,8 +27,10 @@ runs:
27
- name: Install GDK
28
if: ${{ steps.cache-gdk.outputs.cache-hit != 'true' }}
29
shell: pwsh
30
+ env:
31
+ GDK_VERSION: ${{ inputs.gdk-version }}
32
run: |
- winget install --accept-source-agreements --accept-package-agreements --silent --disable-interactivity --version ${{ inputs.gdk-version }} Microsoft.Gaming.GDK
33
+ winget install --accept-source-agreements --accept-package-agreements --silent --disable-interactivity --version "$env:GDK_VERSION" Microsoft.Gaming.GDK
34
reg export "HKLM\SOFTWARE\WOW6432Node\Microsoft\GDK" "$env:RUNNER_TEMP\gdk.reg"
35
36
- name: Cache GDK
0 commit comments