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