0
0
mirror of https://github.com/python-LimeReport/containers.git synced 2024-12-23 16:23:00 +03:00
containers/.github/workflows/manylinux.yml
2024-06-11 08:36:37 +03:00

46 lines
1.3 KiB
YAML

name: manylinux
on:
push:
branches:
- "main"
jobs:
build-and-publish:
runs-on: [self-hosted, Linux, ARM64]
permissions:
contents: read
packages: write
attestations: write
id-token: write
strategy:
matrix:
python: [3.9]
qt: [6.5.3]
image: [manylinux_2_31]
steps:
- name: Checkout repository
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
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.image }}/Dockerfile
platforms: linux/arm64
push: true
cache-from: ghcr.io/python-limereport/${{ matrix.image }}:Py-${{ matrix.python }}-Qt-${{ matrix.qt }}
tags: ghcr.io/python-limereport/${{ matrix.image }}:Py-${{ matrix.python }}-Qt-${{ matrix.qt }}
build-args: |
BUILDKIT_INLINE_CACHE=1
PYTHON_VERSION=${{ matrix.python }}
QT_VERSION=${{ matrix.qt }}