Skip to content

maven-jdk11

maven-jdk11 #670

Workflow file for this run

name: maven-jdk11
on:
schedule:
- cron: "10 15 * * SUN" # In UTC time
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
_3-azulzulu-11:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
buildkitd-config: .github/buildkitd.toml
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: harbor.softleader.com.tw
username: ${{ secrets.SL_HARBOR_ROBOT }}
password: ${{ secrets.SL_HARBOR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./maven/Dockerfile.3-azulzulu-11
tags: harbor.softleader.com.tw/library/maven:3-azulzulu-11
provenance: false
no-cache: true
pull: true
push: true
_3-eclipse-temurin-11:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
buildkitd-config: .github/buildkitd.toml
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: harbor.softleader.com.tw
username: ${{ secrets.SL_HARBOR_ROBOT }}
password: ${{ secrets.SL_HARBOR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./maven/Dockerfile.3-eclipse-temurin-11
tags: harbor.softleader.com.tw/library/maven:3-eclipse-temurin-11
provenance: false
no-cache: true
pull: true
push: true
keepalive:
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- uses: actions/checkout@v4
- uses: gautamkrishnar/keepalive-workflow@v2