Skip to content

Commit

Permalink
Merge pull request #108 from refinedmods/release/0.12.0
Browse files Browse the repository at this point in the history
Release v0.12.0
  • Loading branch information
raoulvdberge authored May 25, 2024
2 parents 14b6636 + ea9bce0 commit fe77532
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
required: false
type: boolean
default: ${{ !github.event.pull_request.head.repo.fork }}
gametests:
required: false
type: boolean
default: false
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -39,6 +43,11 @@ jobs:
run: ./gradlew build codeCoverageReport
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Gametests
if: ${{ inputs.gametests == true }}
run: ./gradlew runGameTestServer
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Analyze
if: ${{ inputs.sonarqube == true }}
run: ./gradlew sonar
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.12.0] - 2024-05-25

### Added

- Support for NeoForge gametests.

## [0.11.5] - 2024-03-16

### Fixed
Expand Down Expand Up @@ -204,7 +210,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.11.5...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.12.0...HEAD

[0.12.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.5...v0.12.0

[0.11.5]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.4...v0.11.5

Expand Down
1 change: 1 addition & 0 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ allprojects {
}
gameTestServer {
systemProperty 'neoforge.enabledGameTestNamespaces', modId
modSource project.sourceSets.test
}
data {
var destinationProject = commonProject != null ? commonProject : project
Expand Down

0 comments on commit fe77532

Please sign in to comment.