Compare commits
No commits in common. "main" and "1.0.1" have entirely different histories.
3 changed files with 19 additions and 19 deletions
|
|
@ -68,7 +68,7 @@ upload artifacts:
|
||||||
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
- git config --global user.email "gitlab@c4181.xyz"
|
- git config --global user.email "gitlab@c4181.xyz"
|
||||||
- git config --global user.name "gitlab_runner"
|
- git config --global user.name "gitlab_runner"
|
||||||
- git checkout -B "$CI_COMMIT_BRANCH"
|
- git checkout -B "$CI_BUILD_REF_NAME"
|
||||||
- 'mvn -B release:prepare -s ci_settings.xml'
|
- 'mvn -B release:prepare -s ci_settings.xml'
|
||||||
- 'mvn -B release:perform -s ci_settings.xml'
|
- 'mvn -B release:perform -s ci_settings.xml'
|
||||||
only:
|
only:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<httpHeaders>
|
<httpHeaders>
|
||||||
<property>
|
<property>
|
||||||
<name>Job-Token</name>
|
<name>Job-Token</name>
|
||||||
<value>${CI_JOB_TOKEN}</value>
|
<value>${env.CI_JOB_TOKEN}</value>
|
||||||
</property>
|
</property>
|
||||||
</httpHeaders>
|
</httpHeaders>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
8
pom.xml
8
pom.xml
|
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.c4181</groupId>
|
<groupId>com.c4181</groupId>
|
||||||
<artifactId>email2telegram-message-service</artifactId>
|
<artifactId>email2telegram-message-service</artifactId>
|
||||||
<version>1.0.2-SNAPSHOT</version>
|
<version>1.0.1-SNAPSHOT</version>
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:git://192.168.1.198/c4181/email2telegram-message-service.git</connection>
|
<connection>scm:git:git://192.168.1.198/c4181/email2telegram-message-service.git</connection>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
@ -146,17 +146,17 @@
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>gitlab-maven</id>
|
<id>gitlab-maven</id>
|
||||||
<url>${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/maven</url>
|
<url>${env.CI_SERVER_URL}/api/v4/projects/${env.CI_PROJECT_ID}/packages/maven</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>gitlab-maven</id>
|
<id>gitlab-maven</id>
|
||||||
<url>${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/maven</url>
|
<url>${env.CI_SERVER_URL}/api/v4/projects/${env.CI_PROJECT_ID}/packages/maven</url>
|
||||||
</repository>
|
</repository>
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>gitlab-maven</id>
|
<id>gitlab-maven</id>
|
||||||
<url>${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/maven</url>
|
<url>${env.CI_SERVER_URL}/api/v4/projects/${env.CI_PROJECT_ID}/packages/maven</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue