Skip to content

Merge pull request #40 from prommis/python3.13 #21

Merge pull request #40 from prommis/python3.13

Merge pull request #40 from prommis/python3.13 #21

name: Deploy docs to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
if: github.repository == 'prommis/idaes-flowsheet-processor-ui'
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node and install dependencies
run: |
npm config set prefix=$(pwd)/.npm-global
npm config set cache=$(pwd)/.npm-cache
npm ci
working-directory: ./website
- name: Build website
working-directory: ./website
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/build
deploy:
if: github.repository == 'prommis/idaes-flowsheet-processor-ui'
name: Deploy to GitHub Pages
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4