Skip to content

Commit

Permalink
Release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNullicorn committed Mar 18, 2022
1 parent 42ae0e3 commit 2a04ec5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This is a basic workflow to help you get started with Actions

name: Update Documentation Site

# Trigger manually, or whenever the main branch is updated.
Expand All @@ -16,6 +14,13 @@ jobs:
steps:
- name: Checkout main branch
uses: actions/checkout@v2.4.0

- name: Define OSSRH credentials
run: |
mkdir -p ~/.gradle
touch ~/.gradle/gradle.properties
echo 'ossrhUsername = ${{ secrets.OSSRH_USERNAME }}' >> ~/.gradle/gradle.properties
echo 'ossrhPassword = ${{ secrets.OSSRH_PASSWORD }}' >> ~/.gradle/gradle.properties
- name: Generate HTML docs
run: ./gradlew dokkaHtml
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@

# Build Files
build
**/kotlin-js-store
**/kotlin-js-store

# Mac Files
.DS_STORE
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "me.nullicorn"
version = "0.0.1-SNAPSHOT"
version = "0.0.1"

// Must go after group & version or else it won't be able to access them.
apply(from = "gradle/publish.gradle.kts")
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name = ms-to-mca
description = Access a Minecraft account via Microsoft login
author.url = github.com/TheNullicorn

repo.release.url = https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
Expand Down
2 changes: 2 additions & 0 deletions gradle/publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ configure<PublishingExtension> {
val projectUrl = "$authorUrl/$projectName"

url.set("https://$projectUrl")
name.set(projectName)
description.set("Access a Minecraft account via Microsoft login")

developers {
developer {
Expand Down

0 comments on commit 2a04ec5

Please sign in to comment.