Skip to content

Commit 4ea3756

Browse files
committed
test
1 parent 45ef67d commit 4ea3756

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)