forked from vega-network-main/java-docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (94 loc) · 2.87 KB
/
openjdk-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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: openjdk-build
on: workflow_dispatch
permissions:
contents: write
pull-requests: write
issues: read
packages: write
jobs:
build:
name: "java-docker-images:openjdk_${{ matrix.tag }}"
runs-on: ubuntu-latest
strategy:
matrix:
tag:
- 11
- 17
- 19
- 21
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta_openjdk
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/openjdk
tags: |
${{ matrix.tag }}
- name: Build and push images
uses: docker/build-push-action@v3
with:
context: .
file: ./OpenJDK/${{ matrix.tag }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta_openjdk.outputs.tags }}
labels: ${{ steps.meta_openjdk.outputs.labels }}
build-args: |
"GITHUB_USER=${{ github.repository_owner }}"
build-alpine:
name: "java-docker-images:openjdk_${{ matrix.tag }}"
runs-on: ubuntu-latest
strategy:
matrix:
tag:
- 17-alpine
- 19-alpine
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta_openjdk
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/openjdk
tags: |
${{ matrix.tag }}
- name: Build and push images
uses: docker/build-push-action@v3
with:
context: .
file: ./OpenJDK/${{ matrix.tag }}/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta_openjdk.outputs.tags }}
labels: ${{ steps.meta_openjdk.outputs.labels }}
build-args: |
"GITHUB_USER=${{ github.repository_owner }}"