From 4b7e763eb7541c113b00caed1a44afb70e7ac981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9phine=20Oberholtzer?= Date: Fri, 31 Jul 2026 09:51:52 -0400 Subject: [PATCH] X-ORG-722: Ensure gha-tools are installed --- .github/workflows/build-and-deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 9e02635b..955a5b50 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -21,6 +21,7 @@ jobs: build: name: Build (and deploy) runs-on: ubuntu-latest + steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 with: @@ -54,6 +55,11 @@ jobs: if: ${{ github.repository == 'rapidsai/deployment' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }} run: aws s3 sync --no-progress --delete build/dirhtml "s3://rapidsai-docs/deployment/html/${VERSION}" + - name: Download gha-tools with git clone + run: | + git clone https://github.com/rapidsai/gha-tools.git -b main /tmp/gha-tools + echo "/tmp/gha-tools/tools" >> "${GITHUB_PATH}" + - name: Publish to docs.nvidia.com if: ${{ github.repository == 'rapidsai/deployment' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }} uses: rapidsai/shared-actions/publish-docs@main