File tree 2 files changed +26
-3
lines changed
2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Tunnel Package to the Maven Central Repository
2
+ on :
3
+ release :
4
+ types : [published]
5
+ jobs :
6
+ publish :
7
+ if : startsWith(github.ref, 'refs/tags/prod-')
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ - name : Set up Maven Central Repository
12
+ uses : actions/setup-java@v3
13
+ with :
14
+ java-version : ' 11'
15
+ distribution : ' adopt'
16
+ server-id : ossrh
17
+ server-username : MAVEN_USERNAME
18
+ server-password : MAVEN_PASSWORD
19
+ - name : Publish package
20
+ run : mvn clean deploy
21
+ env :
22
+ MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
23
+ MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
Original file line number Diff line number Diff line change 5
5
<groupId >com.github.lambdatest</groupId >
6
6
<artifactId >lambdatest-tunnel-binary</artifactId >
7
7
<packaging >jar</packaging >
8
- <version >1.0.10 </version >
8
+ <version >1.0.11 </version >
9
9
<name >lambdatest-maven-tunnel</name >
10
10
<description >LambdaTest tunnel binary in Java</description >
11
11
<url >https://www.lambdatest.com</url >
47
47
<dependency >
48
48
<groupId >junit</groupId >
49
49
<artifactId >junit</artifactId >
50
- <version >4.11 </version >
50
+ <version >4.13.2 </version >
51
51
<scope >test</scope >
52
52
</dependency >
53
53
<dependency >
64
64
<dependency >
65
65
<groupId >net.lingala.zip4j</groupId >
66
66
<artifactId >zip4j</artifactId >
67
- <version >2.2.7 </version >
67
+ <version >2.11.1 </version >
68
68
</dependency >
69
69
<dependency >
70
70
<groupId >org.apache.httpcomponents</groupId >
You can’t perform that action at this time.
0 commit comments