.github/workflows/update-manylinux-openssl-image.yml #31
Workflow file for this run
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
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 17 * * 1-5' | |
workflow_dispatch: | |
jobs: | |
main: | |
env: | |
OPENSSL_VERSION: '3.0.15' | |
REGISTRY: ghcr.io | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github/workflows | |
- run: docker pull quay.io/pypa/manylinux2014_x86_64 | |
- name: Get digest of latest manylinux image | |
# Example: 1b6743f7785bd1630d5fc985c898b1ac46d64ad7a39173bbfc8ad2ba315a70cf | |
run: echo MANYLINUX_IMAGE_DIGEST=$(docker image inspect quay.io/pypa/manylinux2014_x86_64 --format json | jq -r ".[0].RepoDigests[0]" | sed "s/.*@sha256://") > $GITHUB_ENV | |
shell: bash | |
- run: echo CUSTOM_IMAGE_TAG="${{ env.MANYLINUX_IMAGE_DIGEST }}-${{ env.OPENSSL_VERSION }}" >> $GITHUB_ENV | |
- uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: ${{ env.REGISTRY }}/aerospike/manylinux2014_x86_64 | |
tags: ${{ env.CUSTOM_IMAGE_TAG }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
# Don't want to use default Git context or else it will clone the whole Python client repo again | |
context: .github/workflows | |
file: .github/workflows/manylinux2014-openssl.Dockerfile | |
build-args: | | |
OPENSSL_VERSION=${{ env.OPENSSL_VERSION }} | |
# setup-buildx-action configures Docker to use the docker-container build driver | |
# This driver doesn't publish an image locally by default | |
# so we have to manually enable it | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
# Also cache intermediate layers to make development faster | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |