We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1951889 commit 2e5a08dCopy full SHA for 2e5a08d
.github/workflows/content-service.yml
@@ -12,6 +12,13 @@ jobs:
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
15
+
16
+ - name: Set up JDK 11 and Maven
17
+ uses: actions/setup-java@v3
18
+ with:
19
+ distribution: 'temurin'
20
+ java-version: '11'
21
+ cache: 'maven'
22
23
- name: Determine registry and login
24
run: |
@@ -37,6 +44,9 @@ jobs:
37
44
38
45
echo "REGISTRY_URL=${REGISTRY_URL}" >> $GITHUB_ENV
39
46
47
+ - name: Build Content Service
48
+ run: mvn clean package -f content-api/content-service/pom.xml
49
40
50
- name: Build Docker Image
41
51
42
52
IMAGE_NAME="content-service"
0 commit comments