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 58e014a commit 404e69cCopy full SHA for 404e69c
1 file changed
.github/workflows/release.yaml
@@ -126,17 +126,19 @@ jobs:
126
cd "C:\Runner\"
127
Expand-Archive -Path CodeSignTool.zip
128
Get-ChildItem -Force -Path "C:\Runner\CodeSignTool"
129
+
130
+ - name: Ensure System32 is in PATH for Scoop
131
+ if: runner.os == 'Windows'
132
+ shell: bash
133
+ run: |
134
+ echo "C:\Windows\System32" >> $GITHUB_PATH
135
136
- uses: MinoruSekine/setup-scoop@v4.0.2
137
138
with:
139
buckets: extras
140
apps: nsis
-
- - name: Install Windows dependencies
- if: runner.os == 'Windows'
- uses: crazy-max/ghaction-chocolatey@v3
- with:
- args: install nsis
141
+ update_path: 'true'
142
143
# Build -- frontend
144
0 commit comments