Skip to content

Docker Build && Push Image #94

Docker Build && Push Image

Docker Build && Push Image #94

Workflow file for this run

name: Docker Build && Push Image
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * 6'
release:
types: [published]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-manylinux_2_28_x86_64
flavor: |
latest=true
tags: |
type=schedule,pattern={{date 'YYYYMMDD'}},enable=true,priority=1000
type=pep440,pattern={{version}}
type=raw,enable=true,priority=100,value=0.0.0
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Env
run: |
env|sort
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
driver: docker-container
driver-opts: image=moby/buildkit:master
buildkitd-flags: --debug
config: .github/buildkitd.toml
install: true
- name: Inspect builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
outputs: type=image,push=true,compression=gzip,compression-level=9,force-compression=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: openjij-builder
cache-from: type=gha
cache-to: type=gha,mode=max
build-and-push-image-minimum:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-minimum-manylinux_2_28_x86_64
flavor: |
latest=true
tags: |
type=schedule,pattern={{date 'YYYYMMDD'}},enable=true,priority=1000
type=pep440,pattern={{version}}
type=raw,enable=true,priority=100,value=0.0.0
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Env
run: |
env|sort
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
driver: docker-container
driver-opts: image=moby/buildkit:master
buildkitd-flags: --debug
config: .github/buildkitd.toml
install: true
- name: Inspect builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
outputs: type=image,push=true,compression=gzip,compression-level=9,force-compression=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: openjij-builder-minimum
cache-from: type=gha
cache-to: type=gha,mode=max
build-and-push-image-old:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-manylinux2014_x86_64
flavor: |
latest=true
tags: |
type=schedule,pattern={{date 'YYYYMMDD'}},enable=true,priority=1000
type=pep440,pattern={{version}}
type=raw,enable=true,priority=100,value=0.0.0
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Env
run: |
env|sort
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
driver: docker-container
driver-opts: image=moby/buildkit:master
buildkitd-flags: --debug
config: .github/buildkitd.toml
install: true
- name: Inspect builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
outputs: type=image,push=true,compression=gzip,compression-level=9,force-compression=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: openjij-builder-old
cache-from: type=gha
cache-to: type=gha,mode=max
build-and-push-image-old-minimum:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-minimum-manylinux2014_x86_64
flavor: |
latest=true
tags: |
type=schedule,pattern={{date 'YYYYMMDD'}},enable=true,priority=1000
type=pep440,pattern={{version}}
type=raw,enable=true,priority=100,value=0.0.0
- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
- name: Env
run: |
env|sort
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
driver: docker-container
driver-opts: image=moby/buildkit:master
buildkitd-flags: --debug
config: .github/buildkitd.toml
install: true
- name: Inspect builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
outputs: type=image,push=true,compression=gzip,compression-level=9,force-compression=true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: openjij-builder-old-minimum
cache-from: type=gha
cache-to: type=gha,mode=max