From 75172c39a407cbe86c24837dcdb17f3c8c27997d Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 15 Mar 2025 16:28:47 +0100 Subject: [PATCH] ci: add publishing steps for fancyholograms to reposilite --- .github/workflows/deploy-release-fancyholograms.yml | 8 +++++++- .github/workflows/deploy-snapshot-fancyholograms.yml | 5 ++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-release-fancyholograms.yml b/.github/workflows/deploy-release-fancyholograms.yml index 015e1aad..2ff4e7e0 100644 --- a/.github/workflows/deploy-release-fancyholograms.yml +++ b/.github/workflows/deploy-release-fancyholograms.yml @@ -36,4 +36,10 @@ jobs: - name: Deploy run: cd tools/deployment/build/libs && - java -jar deployment.jar ../../../../plugins/fancyholograms/release_deployment_config.json \ No newline at end of file + java -jar deployment.jar ../../../../plugins/fancyholograms/release_deployment_config.json + + - name: Publish to reposilite (releases) + run: ./gradlew :plugins:fancyholograms:api:publishAllPublicationsToFancypluginsReleasesRepository + + - name: Publish to reposilite (snapshots) + run: ./gradlew :plugins:fancyholograms:api:publishAllPublicationsToFancypluginsSnapshotsRepository \ No newline at end of file diff --git a/.github/workflows/deploy-snapshot-fancyholograms.yml b/.github/workflows/deploy-snapshot-fancyholograms.yml index 3a11b67e..4b2b8423 100644 --- a/.github/workflows/deploy-snapshot-fancyholograms.yml +++ b/.github/workflows/deploy-snapshot-fancyholograms.yml @@ -36,4 +36,7 @@ jobs: - name: Deploy run: cd tools/deployment/build/libs && - java -jar deployment.jar ../../../../plugins/fancyholograms/snapshot_deployment_config.json \ No newline at end of file + java -jar deployment.jar ../../../../plugins/fancyholograms/snapshot_deployment_config.json + + - name: Publish to reposilite (snapshots) + run: ./gradlew :plugins:fancyholograms:api:publishAllPublicationsToFancypluginsSnapshotsRepository \ No newline at end of file