Add release steps to CI pipeline

This commit is contained in:
Simon
2022-10-13 17:01:08 +02:00
committed by GitHub
parent 7582be7bc3
commit c6c17002d4
6 changed files with 150 additions and 20 deletions
+35 -15
View File
@@ -1,25 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.grimsi</groupId>
<artifactId>gameyfin</artifactId>
<version>1.2.2-SNAPSHOT</version>
<name>gameyfin</name>
<description>gameyfin</description>
<groupId>de.grimsi</groupId>
<artifactId>gameyfin</artifactId>
<version>1.2.2-SNAPSHOT</version>
<name>gameyfin</name>
<description>gameyfin</description>
<packaging>pom</packaging>
<packaging>pom</packaging>
<modules>
<module>frontend</module>
<module>frontend</module>
<module>backend</module>
</modules>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<scm>
<connection>scm:git:https://github.com/grimsi/gameyfin.git</connection>
<url>scm:git:https://github.com/grimsi/gameyfin.git</url>
<developerConnection>scm:git:https://github.com/grimsi/gameyfin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<scmCommentPrefix>[ci skip]</scmCommentPrefix>
</configuration>
</plugin>
</plugins>
</build>
</project>