Skip to content

chore(deps): update docker/setup-buildx-action digest to 4c0219f #205

chore(deps): update docker/setup-buildx-action digest to 4c0219f

chore(deps): update docker/setup-buildx-action digest to 4c0219f #205

name: Build Anaconda3 Debian Image
on:
push:
branches:
- master
tags:
- 'anaconda3-*'
paths:
- 'anaconda3/debian/Dockerfile'
- '.github/workflows/anaconda_debian_ci.yml'
pull_request:
paths:
- 'anaconda3/debian/Dockerfile'
- '.github/workflows/anaconda_debian_ci.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Login to DockerHub
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
with:
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 # v2
with:
version: latest
driver-opts: network=host
- name: Docker meta
id: meta
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4
with:
images: |
continuumio/anaconda3
tags: |
type=ref,event=branch
type=ref,event=pr
type=match,pattern=anaconda3-(.*),group=1
- name: build-push anaconda3/debian
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # v4
with:
context: ./anaconda3/debian
builder: ${{ steps.buildx.outputs.name }}
file: ./anaconda3/debian/Dockerfile
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags') }}