-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.26 KB
/
build.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/[email protected]
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Cache Maven packages
uses: actions/[email protected]
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: 21
distribution: 'adopt'
cache: maven
- name: Build
run: mvn -B verify -pl !:docs -P container
- name: Publish container
run: |
echo "${ACR_PASSWORD}" | docker login ${ACR_HOSTNAME} --username ${ACR_USERNAME} --password-stdin
docker tag traqqr:latest ${ACR_HOSTNAME}/traqqr:latest
docker push ${ACR_HOSTNAME}/traqqr:latest
env:
ACR_HOSTNAME: ${{ secrets.ACR_HOSTNAME }}
ACR_PASSWORD: ${{ secrets.ACR_PASSWORD }}
ACR_USERNAME: ${{ secrets.ACR_USERNAME }}
if: ${{ github.ref == 'refs/heads/main' }}