Update registry.access.redhat.com/ubi8/ubi-minimal Docker tag to v8.9… #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ubi-quarkus-native-image | |
on: | |
push: | |
paths: | |
- '.github/workflows/ubi-quarkus-native-image.yml' | |
- 'docker_builds/ubi-quarkus-native-image/**' | |
- '!docker_builds/ubi-quarkus-native-image/*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
graalvm: [ 20.1.0, 20.2.0 ] | |
java: [ java11 ] | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Set up Docker Buildx | |
uses: crazy-max/ghaction-docker-buildx@v3 | |
with: | |
buildx-version: latest | |
- | |
name: Cache Docker layers | |
uses: actions/cache@v2 | |
id: cache | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ matrix.graalvm }}-${{ matrix.java }}-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-${{ matrix.graalvm }}-${{ matrix.java }}- | |
- | |
name: Docker Buildx (build) | |
run: | | |
docker buildx build \ | |
--cache-from "type=local,src=/tmp/.buildx-cache" \ | |
--cache-to "type=local,dest=/tmp/.buildx-cache" \ | |
--platform linux/amd64,linux/arm64 \ | |
--build-arg GRAALVM_VERSION=${{ matrix.graalvm }} \ | |
--build-arg JAVA_VERSION=${{ matrix.java }} \ | |
--output "type=image,push=false" \ | |
--tag enros/ubi-quarkus-native-image:${{ matrix.graalvm }}-${{ matrix.java }} \ | |
--file ./docker_builds/ubi-quarkus-native-image/Dockerfile \ | |
./docker_builds/ubi-quarkus-native-image/ | |
- | |
name: Login to GitHub Docker Registry | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: | | |
echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USERNAME}" --password-stdin | |
- | |
name: Docker Buildx (push) | |
run: | | |
docker buildx build \ | |
--cache-from "type=local,src=/tmp/.buildx-cache" \ | |
--platform linux/amd64,linux/arm64 \ | |
--build-arg GRAALVM_VERSION=${{ matrix.graalvm }} \ | |
--build-arg JAVA_VERSION=${{ matrix.java }} \ | |
--output "type=image,push=true" \ | |
--tag enros/ubi-quarkus-native-image:${{ matrix.graalvm }}-${{ matrix.java }} \ | |
--file ./docker_builds/ubi-quarkus-native-image/Dockerfile \ | |
./docker_builds/ubi-quarkus-native-image/ | |
- | |
name: Docker Check Manifest | |
run: | | |
docker run --rm mplatform/mquery enros/ubi-quarkus-native-image:${{ matrix.graalvm }}-${{ matrix.java }} | |
- | |
name: Clear | |
if: always() | |
run: | | |
rm -f ${HOME}/.docker/config.json |