Skip to content

fix(deps): update mockito monorepo to v5.14.2 (#896) #667

fix(deps): update mockito monorepo to v5.14.2 (#896)

fix(deps): update mockito monorepo to v5.14.2 (#896) #667

Workflow file for this run

name: Build and deploy Github pages
on:
push:
branches:
- main
- develop
workflow_dispatch:
jobs:
build:
name: Build pages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Antora
run: npm i antora asciidoctor-kroki
- name: Generate Site
run: npx antora .github/antora-playbook.yml
- name: Prepare upload
run: |
mkdir pages
cp -R .github/antora-docs/. pages
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: pages
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
name: Deploy pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4