Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tmartin-gh committed Nov 17, 2023
1 parent 081587f commit 5379b90
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/blossom-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name: Deploy static content to Pages doctest3
on:
# Runs on pushes targeting the default branch
push:
branches: ["doctest","doctest3"]
branches: ["doctest3"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -110,25 +110,28 @@ jobs:
args3: ${{ fromJson(needs.Authorization.outputs.args).args3 }}

deploy:
needs: [Vulnerability-scan]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
container:
image: ${{ secrets.DOCS_IMAGE }}
credentials:
username: ${{ secrets.DOCS_TOKEN_NAME }}
password: ${{ secrets.DOCS_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Custom
run: |
echo doctest2
pwd
ls
ls /
whoami
mkdir build
cd build
cmake .. -DMATX_BUILD_DOCS=ON
make
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'docs'
path: 'build/docs_input/sphinx/'

5 changes: 3 additions & 2 deletions docs_input/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import datetime


# -- Project information -----------------------------------------------------

project = 'matx'
copyright = '2021, Nvidia'
copyright = '2021-2023, Nvidia'
author = 'Nvidia'

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = ''
release = f'{datetime.datetime.now()}'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 5379b90

Please sign in to comment.