File tree Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Docker image to Docker Hub
2
+ on :
3
+ release :
4
+ types :
5
+ - published
6
+
7
+ jobs :
8
+ publish :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Login to Docker Hub
12
+ uses : docker/login-action@v2
13
+ with :
14
+ username : ${{secrets.DOCKER_USERNAME}}
15
+ password : ${{secrets.DOCKER_PASSWORD}}
16
+ - uses : actions/checkout@v3
17
+ - name : Set up Maven Central Repository
18
+ uses : actions/setup-java@v3
19
+ with :
20
+ java-version : ' 17'
21
+ distribution : ' adopt'
22
+ server-id : docker.io
23
+ server-username : DOCKER_USERNAME
24
+ server-password : DOCKER_PASSWORD
25
+ - name : Publish package
26
+ run : mvn --batch-mode -Prelease package dockerfile:push
27
+ env :
28
+ DOCKER_USERNAME : ${{secrets.DOCKER_USERNAME}}
29
+ DOCKER_TOKEN : ${{secrets.DOCKER_PASSWORD}}
Original file line number Diff line number Diff line change 10
10
</parent >
11
11
<groupId >edu.stanford.protege</groupId >
12
12
<artifactId >webprotege-authorization-service</artifactId >
13
- <version >1.0.1 </version >
13
+ <version >1.0.2 </version >
14
14
<name >webprotege-authorization-service</name >
15
15
<description >A service that checks users are authorized to execute operations in WebProtége</description >
16
16
<properties >
55
55
<dependency >
56
56
<groupId >edu.stanford.protege</groupId >
57
57
<artifactId >webprotege-authorization</artifactId >
58
- <version >0.9.3 </version >
58
+ <version >0.9.4 </version >
59
59
</dependency >
60
60
<dependency >
61
61
<groupId >io.jsonwebtoken</groupId >
114
114
<version >22.0.0</version >
115
115
<scope >test</scope >
116
116
</dependency >
117
+ <dependency >
118
+ <groupId >com.fasterxml.jackson.core</groupId >
119
+ <artifactId >jackson-databind</artifactId >
120
+ <version >2.12.4</version >
121
+ </dependency >
122
+
117
123
118
124
<dependency >
119
125
<groupId >org.testcontainers</groupId >
You can’t perform that action at this time.
0 commit comments