Skip to content

Update CI users (#1181) #631

Update CI users (#1181)

Update CI users (#1181) #631

# 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]