Skip to content

Merge pull request #23 from opencast/dependabot/npm_and_yarn/qs-6.14.2 #12

Merge pull request #23 from opencast/dependabot/npm_and_yarn/qs-6.14.2

Merge pull request #23 from opencast/dependabot/npm_and_yarn/qs-6.14.2 #12

Workflow file for this run

name: Deploy
on:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
actions: read
concurrency:
group: deploy-docs
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- name: Disable Jykell
run: touch build/.nojekyll
- name: Upload built documentation as artifact
uses: actions/upload-pages-artifact@v3
with:
path: build/
deploy:
needs: build
runs-on: ubuntu-22.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4