Skip to content

Commit

Permalink
Merge pull request #153 from refinedmods/release/0.16.1
Browse files Browse the repository at this point in the history
Release v0.16.1
  • Loading branch information
raoulvdberge authored Jul 8, 2024
2 parents 15ee7fd + 6e7305d commit 402cd29
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.16.1] - 2024-07-08

## [0.16.0] - 2024-07-08

### Added
Expand Down Expand Up @@ -304,7 +306,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.1...HEAD

[0.16.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.0...v0.16.1

[0.16.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.15.3...v0.16.0

Expand Down
21 changes: 21 additions & 0 deletions refinedarchitect-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,24 @@ dependencies {
implementation("net.darkhax.curseforgegradle:CurseForgeGradle:1.1.18")
implementation("com.modrinth.minotaur:Minotaur:2.8.7")
}

publishing {
repositories {
maven {
name = "GitHubPackages"
url = project.uri("https://maven.pkg.github.com/" + System.getenv("GITHUB_REPOSITORY"))
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
name = "CreeperHost"
url = project.uri("https://maven.creeperhost.net/release")
credentials {
username = System.getenv("CREEPERHOST_MAVEN_USERNAME")
password = System.getenv("CREEPERHOST_MAVEN_TOKEN")
}
}
}
}
18 changes: 18 additions & 0 deletions refinedarchitect-versioning/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,24 @@ catalog {
}

publishing {
repositories {
maven {
name = "GitHubPackages"
url = project.uri("https://maven.pkg.github.com/" + System.getenv("GITHUB_REPOSITORY"))
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
name = "CreeperHost"
url = project.uri("https://maven.creeperhost.net/release")
credentials {
username = System.getenv("CREEPERHOST_MAVEN_USERNAME")
password = System.getenv("CREEPERHOST_MAVEN_TOKEN")
}
}
}
publications {
create<MavenPublication>("maven") {
from(components["versionCatalog"])
Expand Down

0 comments on commit 402cd29

Please sign in to comment.