Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: Maven release
name: build_and_release

on:
push:
branches:
- main
- snapshot
paths-ignore:
- "**/*.md"
- "src/test/**"

concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true

jobs:
build_and_release:
uses: cyclopsgroup/cyclopsgroup/.github/workflows/maven-release-snapshot.yml@main
secrets:
awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }}
awsSecretkey: ${{ secrets.AWS_SECRET_KEY }}
publish:
uses: jiaqi/cyclopsgroup/.github/workflows/maven-publish.yml@main

10 changes: 8 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
name: Maven verify
name: verify

on:
push:
paths-ignore:
- "**/*.md"

concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true

jobs:
verify:
uses: cyclopsgroup/cyclopsgroup/.github/workflows/maven-verify.yml@main
uses: jiaqi/cyclopsgroup/.github/workflows/maven-verify.yml@main

16 changes: 11 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<packaging>jar</packaging>
<version>1.0.0-SNAPSHOT</version>
<description>Git backened runtime config</description>
<url>http://github.com/cyclopsgroup/gitcon</url>
<url>http://github.com/jiaqi/gitcon</url>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
Expand Down Expand Up @@ -90,10 +90,16 @@
<url>https://github.com/cyclopsgroup/gitcon</url>
</scm>
<distributionManagement>
<site>
<id>cyclopsgroup.server</id>
<url>s3://${dist.bucketName}/projects/gitcon</url>
</site>
<snapshotRepository>
<id>github</id>
<name>GitHub jiaqi Apache Maven Packages</name>
<url>https://maven.pkg.github.com/jiaqi/gitcon</url>
</snapshotRepository>
<repository>
<id>github</id>
<name>GitHub jiaqi Apache Maven Packages</name>
<url>https://maven.pkg.github.com/jiaqi/gitcon</url>
</repository>
</distributionManagement>
<properties>
<org.springframework.version>7.0.5</org.springframework.version>
Expand Down