feature/auth-harmonization #155

Merged
hsiegeln merged 5 commits from feature/auth-harmonization into main 2026-04-26 19:01:03 +02:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit cd92036f91 - Show all commits

View File

@@ -84,6 +84,12 @@ jobs:
- name: Build and Test
run: mvn clean verify -DskipITs -U --batch-mode
- name: Deploy minter to Maven registry
if: github.event_name == 'push'
run: mvn deploy -DskipTests -DskipITs --batch-mode -pl .,cameleer-server-core,cameleer-license-minter
env:
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
docker:
needs: build
runs-on: ubuntu-latest

11
pom.xml
View File

@@ -65,6 +65,17 @@
</repository>
</repositories>
<distributionManagement>
<repository>
<id>gitea</id>
<url>https://gitea.siegeln.net/api/packages/cameleer/maven</url>
</repository>
<snapshotRepository>
<id>gitea</id>
<url>https://gitea.siegeln.net/api/packages/cameleer/maven</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>