File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -87,18 +87,20 @@ jobs:
8787 install-script :
8888 runs-on : ${{ matrix.os }}
8989 name : ${{ matrix.os }} - ${{ matrix.command }}
90+ env :
91+ INSTALL_SCRIPT : https://raw.githubusercontent.com/elastic/docs-builder/${{ github.sha }}/install.sh
92+ INSTALL_SCRIPT_PWSH : https://raw.githubusercontent.com/elastic/docs-builder/${{ github.sha }}/install.ps1
9093 strategy :
9194 fail-fast : false
9295 matrix :
9396 include :
9497 - os : ubuntu-latest
95- command : curl -sL https://ela.st/docs-builder-install | sh
98+ command : curl -sL ${{ env.INSTALL_SCRIPT }} | sh
9699 - os : macos-latest
97- command : curl -sL https://ela.st/docs-builder-install | sh
100+ command : curl -sL ${{ env.INSTALL_SCRIPT }} | sh
98101 - os : windows-latest
99102 command : iex (New-Object System.Net.WebClient).DownloadString('https://ela.st/docs-builder-install-win')
100103 steps :
101104 - uses : actions/checkout@v4
102105 - run : ${{ matrix.command }}
103- shell : bash
104106 - run : docs-builder --help
You can’t perform that action at this time.
0 commit comments