Skip to content
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: 2 additions & 4 deletions .github/workflows/publish-to-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,9 @@ jobs:

- name: Publish to Central
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
mvn -B -P maven-central \
-Dgpg.passphrase="${GPG_PASSPHRASE}" \
clean deploy
mvn -B -P maven-central clean deploy

- name: Confirmation
run: echo "Published version $VERSION to Maven Central."
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# White_Utils – Java Utility Library

[![Maven Central](https://img.shields.io/maven-central/v/com.whiteorganization/whiteutils.svg)](https://search.maven.org/artifact/com.whiteorganization/whiteutils)
[![Maven Central](https://img.shields.io/maven-central/v/io.github.white-sdev/white-utils.svg)](https://search.maven.org/artifact/io.github.white-sdev/white-utils)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](#)

Expand All @@ -23,7 +23,7 @@ WhiteUtils is designed to be as generic and dependency-minimal as possible so it
**Add dependency (example):**
```xml
<dependency>
<groupId>com.whiteorganization</groupId>
<groupId>io.github.white-sdev</groupId>
<artifactId>white-utils</artifactId>
<version>1.0.1</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<!-- region project data -->
<groupId>io.github.whiteorganization</groupId>
<groupId>io.github.white-sdev</groupId>
<artifactId>white-utils</artifactId>
<version>1.0.1</version>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down