Skip to content

fix: pages and refactor workflow names (#18) #3

fix: pages and refactor workflow names (#18)

fix: pages and refactor workflow names (#18) #3

Workflow file for this run

name: Release pages
on:
workflow_dispatch:
push:
branches:
- "main"
permissions:
id-token: write
jobs:
release-page:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Dokka
run: ./gradlew dokkaHtml
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4