.github/workflows/update-manylinux-openssl-image.yml #25
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: | |
# TODO: get a better name | |
CUSTOM_MANYLINUX_IMAGE_NAME: manylinux2014-openssl | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github/workflows | |
- 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=3.0.15 | |
tags: ${{ env.CUSTOM_MANYLINUX_IMAGE_NAME }} | |
# 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 | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |