Skip to content

Commit

Permalink
fix: attempting to fix mpp publish (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
brizzbuzz authored Oct 3, 2022
1 parent 2750c8b commit c8b0e21
Show file tree
Hide file tree
Showing 888 changed files with 1,601 additions and 57,294 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: autoupdate
on:
push:
branches: [ main ]
jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-latest
steps:
- uses: docker://chinthakagodawita/autoupdate-action:v1
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
2 changes: 1 addition & 1 deletion .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
uses: burrunan/gradle-cache-action@v1
with:
gradle-version: wrapper
arguments: test koverCollectReports
arguments: test
25 changes: 0 additions & 25 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,3 @@ jobs:
env:
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USER }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
build-documentation:
runs-on: ubuntu-latest
needs:
- publish-to-nexus
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '17'
- name: Build New Documentation
uses: burrunan/gradle-cache-action@v1
with:
gradle-version: wrapper
arguments: dokkaHtmlMultiModule
properties: |
release=true
- name: Push New Documentation
uses: EndBug/add-and-commit@v8
with:
default_author: github_actions
branch: main
message: 'doc: Added Latest Documentation ✨'
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.0] - October 3rd, 2022

Still trying to fix publishing issue, also dropped dokka, will be replaced with gitbook soon

## [0.7.1] - April 19th, 2022

Just a version bump to try to fix maven central issue
Expand Down
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
plugins {
kotlin("jvm") version "1.7.20" apply false
kotlin("multiplatform") version "1.7.20" apply false
id("io.bkbn.sourdough.root") version "0.9.1"
id("io.bkbn.sourdough.root") version "0.12.0"
id("com.github.jakemarsden.git-hooks") version "0.0.2"
id("org.jetbrains.dokka") version "1.7.10"
id("org.jetbrains.kotlinx.kover") version "0.5.1"
// id("org.jetbrains.kotlinx.kover") version "0.6.0"
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
}

Expand Down
29 changes: 22 additions & 7 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
plugins {
kotlin("multiplatform")
id("io.bkbn.sourdough.library.mpp") version "0.9.2"
id("io.bkbn.sourdough.library.mpp") version "0.12.0"
id("io.kotest.multiplatform") version "5.5.0"
id("io.gitlab.arturbosch.detekt") version "1.21.0"
id("com.adarshr.test-logger") version "3.2.0"
id("org.jetbrains.dokka")
id("maven-publish")
id("java-library")
id("signing")
}

sourdough {
sourdoughLibrary {
githubOrg.set("unredundant")
githubRepo.set("satisfaketion")
libraryName.set("Satisfaketion")
Expand All @@ -27,13 +26,29 @@ dependencies {
}

kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
}
withJava()
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
js(BOTH) {
browser {
commonWebpackConfig {
cssSupport.enabled = true
}
}
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib"))
}
}
val commonTest by getting
// val commonTest by getting
val jvmMain by getting {
dependencies {
implementation(kotlin("stdlib"))
Expand All @@ -42,14 +57,14 @@ kotlin {
}
val jvmTest by getting {
dependencies {
implementation("io.kotest:kotest-runner-junit5-jvm:5.4.2")
implementation("io.kotest:kotest-runner-junit5-jvm:5.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
implementation("io.kotest:kotest-assertions-kotlinx-time-jvm:4.4.3")
}
}
val jsMain by getting
val jsTest by getting
val nativeMain by getting
val nativeTest by getting
// val nativeMain by getting
// val nativeTest by getting
}
}

This file was deleted.

4 changes: 0 additions & 4 deletions docs/0.5.3/images/anchor-copy-button.svg

This file was deleted.

3 changes: 0 additions & 3 deletions docs/0.5.3/images/arrow_down.svg

This file was deleted.

3 changes: 0 additions & 3 deletions docs/0.5.3/images/copy-icon.svg

This file was deleted.

3 changes: 0 additions & 3 deletions docs/0.5.3/images/copy-successful-icon.svg

This file was deleted.

3 changes: 0 additions & 3 deletions docs/0.5.3/images/footer-go-to-link.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/0.5.3/images/go-to-top-icon.svg

This file was deleted.

10 changes: 0 additions & 10 deletions docs/0.5.3/images/logo-icon.svg

This file was deleted.

4 changes: 0 additions & 4 deletions docs/0.5.3/images/theme-toggle.svg

This file was deleted.

66 changes: 0 additions & 66 deletions docs/0.5.3/index.html

This file was deleted.

Loading

0 comments on commit c8b0e21

Please sign in to comment.