-
Notifications
You must be signed in to change notification settings - Fork 11
41 lines (37 loc) · 934 Bytes
/
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
name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '20'
- run: make build
- run: make test
# deploy:
# needs: build
# runs-on: ubuntu-latest
# if: ${{ github.event_name == 'push' }}
#
# steps:
# - uses: actions/checkout@v2
#
# - uses: docker/setup-buildx-action@v1
#
# - uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
#
# - uses: docker/build-push-action@v2
# with:
# context: .
# push: true
# cache-from: hexletcomponents/java-spring-blog:latest
# cache-to: type=inline
# tags: hexletcomponents/java-spring-blog:latest