-
Notifications
You must be signed in to change notification settings - Fork 24
54 lines (43 loc) · 1.16 KB
/
maven.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
47
48
49
50
51
52
53
54
name: Build Backend
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- '**'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Backend
run: cd power-pay-backend && mvn package
- id: string
uses: ASzc/change-string-case-action@v6
with:
string: ${{github.repository}}
- id: Convert_string_to_lowercase
run: echo ${{ steps.string.outputs.lowercase }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: ./power-pay-backend
file: ./power-pay-backend/Dockerfile
push: true
tags: ghcr.io/${{ github.repository }}:latest