Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.19.1 #187

Merged
merged 6 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Setup Java
uses: refinedmods/refinedarchitect/.github/actions/setup-java@develop
- name: Publish to Maven
run: ./gradlew publish
run: ./gradlew --no-configuration-cache publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CREEPERHOST_MAVEN_USERNAME: ${{ secrets.CREEPERHOST_MAVEN_USERNAME }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: Setup Java
uses: refinedmods/refinedarchitect/.github/actions/setup-java@develop
- name: Deploy to CurseForge
run: ./gradlew publishCurseforge
run: ./gradlew --no-configuration-cache publishCurseforge

deploy-modrinth:
name: Deploy to Modrinth
Expand All @@ -179,7 +179,7 @@ jobs:
- name: Setup Java
uses: refinedmods/refinedarchitect/.github/actions/setup-java@develop
- name: Deploy to Modrinth
run: ./gradlew publishModrinth
run: ./gradlew --no-configuration-cache publishModrinth

announce-discord:
name: Announce to Discord
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.19.1] - 2024-09-10

### Fixed

- Fixed publishing not working with the config cache.

## [0.19.0] - 2024-09-10

### Added
Expand Down Expand Up @@ -384,7 +390,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.19.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.19.1...HEAD

[0.19.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.19.0...v0.19.1

[0.19.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.18.0...v0.19.0

Expand Down
Loading