1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2026-06-04 16:48:16 +08:00

build(deploy): Fixed deployment

This commit is contained in:
2025-05-20 09:38:11 +08:00
parent 54939f0f14
commit ed505357f3
3 changed files with 23 additions and 15 deletions
+4 -4
View File
@@ -59,7 +59,7 @@ jobs:
run: | run: |
rm -rf docs rm -rf docs
mkdir -vp docs mkdir -vp docs
cp -vrf target/site/apidocs/* docs/ cp -vrf target/reports/apidocs/* docs/
cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md
- name: "Generate Javadoc sitemap" - name: "Generate Javadoc sitemap"
@@ -116,17 +116,17 @@ jobs:
- name: "Set up JDK" - name: "Set up JDK"
uses: actions/setup-java@v4 uses: actions/setup-java@v4
with: with:
java-version: '11' java-version: '8'
distribution: 'adopt' distribution: 'adopt'
cache: maven cache: maven
server-id: ossrh server-id: central
server-username: MAVEN_USERNAME server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: "Central Deploy" - name: "Central Deploy"
run: mvn -B -Possrh deploy --file pom.xml -DskipTests run: mvn -B -Pcentral deploy --file pom.xml -DskipTests
env: env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }} MAVEN_USERNAME: ${{ secrets.OSSRH_USER }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASS }} MAVEN_PASSWORD: ${{ secrets.OSSRH_PASS }}
@@ -6,6 +6,7 @@ import org.bukkit.event.HandlerList;
import org.bukkit.event.Listener; import org.bukkit.event.Listener;
import org.bukkit.event.inventory.InventoryClickEvent; import org.bukkit.event.inventory.InventoryClickEvent;
import org.bukkit.event.inventory.InventoryCloseEvent; import org.bukkit.event.inventory.InventoryCloseEvent;
import org.bukkit.event.inventory.InventoryCreativeEvent;
import org.bukkit.event.inventory.InventoryDragEvent; import org.bukkit.event.inventory.InventoryDragEvent;
import org.bukkit.event.player.PlayerQuitEvent; import org.bukkit.event.player.PlayerQuitEvent;
+18 -11
View File
@@ -296,17 +296,24 @@
<profiles> <profiles>
<profile> <profile>
<id>ossrh</id> <id>central</id>
<distributionManagement> <build>
<snapshotRepository> <plugins>
<id>ossrh</id> <plugin>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> <groupId>org.sonatype.central</groupId>
</snapshotRepository> <artifactId>central-publishing-maven-plugin</artifactId>
<repository> <version>0.7.0</version>
<id>ossrh</id> <extensions>true</extensions>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> <configuration>
</repository> <publishingServerId>central</publishingServerId>
</distributionManagement> <autoPublish>true</autoPublish>
<excludeArtifacts>
<excludeArtifact>configured-demo</excludeArtifact>
</excludeArtifacts>
</configuration>
</plugin>
</plugins>
</build>
</profile> </profile>
<profile> <profile>