Skip to content

Fix typo in readme (#9) #8

Fix typo in readme (#9)

Fix typo in readme (#9) #8

Workflow file for this run

name: Build and deploy documentation to GitHub Pages
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
publish-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build html
run: bin/gradle dokkaHtml --no-daemon --stacktrace
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v1.0.7
with:
path: lib/build/dokka/html
- name: Deploy GitHub Pages site
uses: actions/deploy-pages@v2.0.0