-
Notifications
You must be signed in to change notification settings - Fork 6
69 lines (56 loc) · 2.04 KB
/
docker-embedded-publish.yml
File metadata and controls
69 lines (56 loc) · 2.04 KB
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
name: Publish Embedded GlassFish Docker Image to GitHub
on:
workflow_dispatch:
inputs:
gfVersion:
description: 'The value of the glassfish.version property, used also to build the image.'
required: true
default: '8.0.0'
basicImage:
description: 'The basic docker image'
required: true
default: 'eclipse-temurin:21-jdk'
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_ID: "ghcr.io/${{ github.repository_owner }}/embedded-glassfish"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Maven Configure
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
platforms: linux/amd64,linux/arm64
- name: Build
run: mvn clean prepare-package -Dglassfish.version=${{ github.event.inputs.gfVersion }} -Dgf.docker.baseImage=${{ github.event.inputs.basicImage }}
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Additional Info
run: |
mvn -v
uname -a
docker buildx ls
docker buildx imagetools inspect ${{ env.IMAGE_ID }}:latest || echo "No image ${{ env.IMAGE_ID }}:latest exists"
- name: Build and Deploy
uses: docker/build-push-action@v6
with:
context: images/embedded/${{ github.event.inputs.gfVersion }}
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.IMAGE_ID }}:${{ github.event.inputs.gfVersion }},${{ env.IMAGE_ID }}:latest