-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (26 loc) · 1.1 KB
/
sync.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: "Sync Maven"
on:
push:
branches:
- main
# 手动触发部署
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.9.5
- uses: guoshiqiufeng/github-action-sync-maven@v1
with:
repositories: 'https://maven.aliyun.com/repository/public'
dependenciesJson: '[
{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-bom", "version":"0.8.1"}
,{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-spring-boot-starter", "version":"0.8.1"}
,{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-spring-boot-starter-kafka", "version":"0.8.1"}
,{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-spring-boot-starter-redis", "version":"0.8.1"}
,{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-spring-boot-starter-rocketmq-remoting", "version":"0.8.1"}
,{"groupId":"io.github.guoshiqiufeng", "artifactId":"loki-spring-boot-starter-rocketmq", "version":"0.8.1"}
]'