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 a03d05a commit 0803063Copy full SHA for 0803063
.github/workflows/release.yml
@@ -27,7 +27,10 @@ jobs:
27
runs-on: ${{ matrix.os }}
28
steps:
29
- uses: actions/checkout@v3
30
- # depending on the windows command (when we are ready to build for it), may have to check which os currently on
+ - name: Windows only, install wget
31
+ if: ${{ runner.os == 'Windows' }}
32
+ run: |
33
+ choco install wget --no-progress
34
- name: Install nodejs dependencies
35
run: |
36
npm install
0 commit comments