deploy test
Some checks failed
Gitea Action Maven build / build (push) Has been cancelled

This commit is contained in:
Eduard Kuksa 2025-02-01 17:12:06 +07:00
parent b2ce0bf759
commit e85fd6d641
2 changed files with 19 additions and 0 deletions

View File

@ -48,6 +48,8 @@ jobs:
</servers> </servers>
</settings> </settings>
EOF EOF
- name: Deploy to Gitea
run: mvn deploy -s settings.xml
# - name: List target directory # - name: List target directory
# run: ls -l target # run: ls -l target
# - name: Upload to Gitea Packages # - name: Upload to Gitea Packages

17
pom.xml
View File

@ -56,4 +56,21 @@
</plugins> </plugins>
</build> </build>
<repositories>
<repository>
<id>gitea</id>
<url>https://gitea.kuksa.dev/api/packages/edkuksa/maven</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>gitea</id>
<url>https://gitea.kuksa.dev/api/packages/edkuksa/maven</url>
</repository>
<snapshotRepository>
<id>gitea</id>
<url>https://gitea.kuksa.dev/api/packages/edkuksa/maven</url>
</snapshotRepository>
</distributionManagement>
</project> </project>