Skip to content

Resolve executions/inputs with 'select' (#155) #93

Resolve executions/inputs with 'select' (#155)

Resolve executions/inputs with 'select' (#155) #93

Workflow file for this run

name: Docs
on:
push:
paths:
- docs/**
- .github/workflows/docs.yml
workflow_dispatch:
defaults:
run:
working-directory: docs
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Pages
uses: actions/configure-pages@v3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: docs/build/
deploy:
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
concurrency: ${{ github.workflow }}-deploy
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4