Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
manriif committed Jun 28, 2024
1 parent 4b76d9c commit 0d29a6f
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/dokka.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy multi-module dokka to GitHub Pages

on:
# Runs on pushes targeting the default branch
# Pattern matched against refs/tags
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3.1.0
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
cache-read-only: true
- name: Build multi-module GH pages
run: ./gradlew dokkaHtmlMultiModule
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'dokka/documentation'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
1 change: 1 addition & 0 deletions build-logic/src/main/kotlin/conventions-common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
plugins {
id("conventions-detekt")
id("conventions-dokka")
id("conventions-publish")
}
1 change: 0 additions & 1 deletion gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
plugins {
`kotlin-dsl`
alias(libs.plugins.conventions.common)
alias(libs.plugins.conventions.publish)
alias(libs.plugins.gradle.plugin.publish)
}

Expand Down
1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ vanniktech-maven-publish = "0.29.0"
[plugins]

conventions-common = { id = "conventions-common", version.ref = "supabase-functions" }
conventions-publish = { id = "conventions-publish", version.ref = "supabase-functions" }
conventions-kmp = { id = "conventions-kmp", version.ref = "supabase-functions" }

detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
Expand Down
File renamed without changes
File renamed without changes

0 comments on commit 0d29a6f

Please sign in to comment.