Skip to content

Dockerfile - Update hpcx link in cuda11.1 dockerfile to fix CI #2628

Dockerfile - Update hpcx link in cuda11.1 dockerfile to fix CI

Dockerfile - Update hpcx link in cuda11.1 dockerfile to fix CI #2628

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
- release/*
jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup nodejs
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Test docs build
run: |
cd website
npm ci
npm run build
- name: Prepare ssh key
uses: webfactory/[email protected]
if: ${{ github.event_name == 'push' }}
with:
ssh-private-key: ${{ secrets.GH_PAGES_KEY }}
- name: Publish to GitHub Pages
if: ${{ github.event_name == 'push' }}
env:
GIT_USER: ${{ secrets.GH_PAGES_USERNAME }}
USE_SSH: true
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
cd website
npm run deploy