Update polars.Dockerfile #76
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: Container Image Packages | |
on: | |
push: | |
paths: | |
- dockerfiles/* | |
branches: | |
- main | |
jobs: | |
changes: | |
name: Dockerfile Changes | |
runs-on: ubuntu-latest | |
outputs: | |
dockerfiles: ${{ steps.filter.outputs.dockerfiles_files }} | |
dockerfiles_changed: ${{ steps.filter.outputs.dockerfiles }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Filter Dockerfile changes | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
list-files: json | |
filters: | | |
dockerfiles: | |
- added|modified: 'dockerfiles/*.Dockerfile' | |
- name: Generate Markdown Summary | |
run: | | |
echo New/modified Dockerfiles: ${{ steps.filter.outputs.dockerfiles_files }} >> $GITHUB_STEP_SUMMARY | |
ghcr: | |
needs: [changes] | |
if: ${{ needs.changes.outputs.dockerfiles_changed == 'true' }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
image: ${{ fromJson(needs.changes.outputs.dockerfiles) }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up QEMU for cross-platform builds | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- id: image-tag # example output: "ghcr.io/kestra-io/pydata:latest" | |
run: | | |
IMAGE=$(basename ${{ matrix.image }} .Dockerfile) | |
echo "image_url=ghcr.io/kestra-io/$IMAGE:latest" >> $GITHUB_OUTPUT | |
echo "file=${{ matrix.image }}" >> $GITHUB_OUTPUT | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.image-tag.outputs.image_url }} | |
file: ${{ steps.image-tag.outputs.file }} | |
platforms: linux/amd64,linux/arm64 |