install-nsis.yml 399 B

1234567891011121314
  1. - name: choco install nsis
  2. uses: nick-invision/retry@v2
  3. with:
  4. timeout_minutes: 10
  5. max_attempts: 10
  6. command: choco install --no-progress nsis.portable --version 3.02 -y
  7. - name: choco install things
  8. shell: pwsh
  9. run: choco install --no-progress curl wget 7zip.portable -y
  10. - name: Prepend Chocolatey path
  11. shell: pwsh
  12. run: Write-Host "::add-path::C:\ProgramData\chocolatey\bin"