forked from vega-network-main/java-docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (52 loc) · 1.53 KB
/
azul-zulu-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
name: azul-zulu-build
on: workflow_dispatch
permissions:
contents: write
pull-requests: write
issues: read
packages: write
jobs:
java-docker-images:
name: "java-docker-images:zulu_${{ matrix.tag }}"
runs-on: ubuntu-latest
strategy:
matrix:
tag:
- 8
- 11
- 17
- 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_azulzulu
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/azul-zulu
tags: |
${{ matrix.tag }}
- name: Build and push images
uses: docker/build-push-action@v3
with:
context: .
file: ./Azul Zulu/${{ matrix.tag }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta_azulzulu.outputs.tags }}
labels: ${{ steps.meta_azulzulu.outputs.labels }}
build-args: |
"GITHUB_USER=${{ github.repository_owner }}"