Skip to content

Update of docs by ProFiLeR4100 #15

Update of docs by ProFiLeR4100

Update of docs by ProFiLeR4100 #15

Workflow file for this run

name: update-docs
run-name: Update of docs by ${{ github.actor }}
on:
push:
branches:
- master
jobs:
deploy-pages:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm install
- run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1