Skip to content

chore(deps): update docker/setup-buildx-action digest to 885d146 #237

chore(deps): update docker/setup-buildx-action digest to 885d146

chore(deps): update docker/setup-buildx-action digest to 885d146 #237

name: Build Anaconda3 Debian Image
on:
push:
branches:
- main
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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v3
- name: Login to DockerHub
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v2
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v2
with:
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2
with:
version: latest
driver-opts: network=host
- name: Docker meta
id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # 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@0565240e2d4ab88bba5387d719585280857ece09 # 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/main' || startsWith(github.ref, 'refs/tags') }}