Skip to content

chore(deps): bump actions/checkout from 3.6.0 to 4.0.0 (#395) #200

chore(deps): bump actions/checkout from 3.6.0 to 4.0.0 (#395)

chore(deps): bump actions/checkout from 3.6.0 to 4.0.0 (#395) #200

name: Build Miniconda3 Debian Image
on:
push:
branches:
- main
tags:
- 'miniconda3-v*.*.*'
paths:
- 'miniconda3/debian/Dockerfile'
- '.github/workflows/miniconda_debian_ci.yml'
pull_request:
paths:
- 'miniconda3/debian/Dockerfile'
- '.github/workflows/miniconda_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@465a07811f14bebb1938fbed4728c6a1ff8901fc # 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@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
with:
platforms: linux/amd64,linux/arm64,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/miniconda3
tags: |
type=ref,event=branch
type=ref,event=pr
type=match,pattern=miniconda3-v(.*),group=1
- name: build miniconda3/debian
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # v4
with:
context: ./miniconda3/debian
builder: ${{ steps.buildx.outputs.name }}
file: ./miniconda3/debian/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') }}