-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1.01 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
name: Build and smoke-test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: mvn -B spring-boot:build-image -Pnative
- name: Run application
run: |
docker run -d --rm -p 8080:8080 --name app ghcr.io/derkoe/spring-boot-native-test
sleep 5
docker logs app
curl -v http://localhost:8080
docker stop app
- name: Push image
if: ${{ github.event_name != 'pull_request'}}
run: |
docker push ghcr.io/derkoe/spring-boot-native-test