[Common] Default CUDA_HOME to /usr/local/cuda when dynamically loadin… #633
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
# | |
# See LICENSE for license information. | |
# A workflow to deploy the nightly version of TE documentation to GitHub Pages | |
name: Deploy nightly docs | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
uses: ./.github/workflows/docs.yml | |
prepare: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact | |
uses: actions/[email protected] | |
with: | |
name: "te_docs" | |
path: "html" | |
- name: Prepare for pages | |
uses: actions/[email protected] | |
with: | |
path: "html" | |
deploy: | |
needs: prepare | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy | |
uses: actions/[email protected] |