Skip to content

Update docker/setup-buildx-action action to v3.3.0 #232

Update docker/setup-buildx-action action to v3.3.0

Update docker/setup-buildx-action action to v3.3.0 #232

Workflow file for this run

name: Dockerize
on:
#schedule:
#- cron: "0 10 * * *" # everyday at 10am
push:
branches:
- "**"
tags:
- "*"
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v5.5.1
with:
images: inseefrlab/spark-hadoop # list of Docker images to use as base name for tags
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.2.0
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5.1.0
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: |
${{ steps.docker_meta.outputs.tags }}
${{ github.ref == 'refs/heads/master' && 'inseefrlab/spark-hadoop:latest' || '' }}
labels: ${{ steps.docker_meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}