chore(deps): update amazonlinux docker tag to v2.0.20240816.0 #368
Workflow file for this run
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: Build and publish Linux package builder images | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'pkg-build-*' | |
paths: | |
- 'anaconda-pkg-build/linux/Dockerfile' | |
- '.github/workflows/anaconda_pkg_build_linux.yml' | |
pull_request: | |
paths: | |
- 'anaconda-pkg-build/linux/Dockerfile' | |
- '.github/workflows/anaconda_pkg_build_linux.yml' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Login to DockerHub | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to Public ECR | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') | |
with: | |
registry: public.ecr.aws | |
username: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
env: | |
AWS_REGION: us-east-1 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 | |
with: | |
version: latest | |
driver-opts: network=host | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 | |
with: | |
images: | | |
continuumio/anaconda-pkg-build | |
public.ecr.aws/y0o4y9o3/anaconda-pkg-build | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=match,pattern=pkg-build-(.*),group=1 | |
- name: build-push pkg-builder | |
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0 | |
with: | |
context: ./anaconda-pkg-build/linux | |
builder: ${{ steps.buildx.outputs.name }} | |
file: ./anaconda-pkg-build/linux/Dockerfile | |
platforms: linux/amd64,linux/arm64/v8,linux/s390x | |
build-args: | | |
BASEVERSION=7 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags') }} |