Skip to content

Set version to 2.6.2 #83

Set version to 2.6.2

Set version to 2.6.2 #83

Workflow file for this run

name: Docker
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
inputs:
multi-platform:
description: Build multi-platform image (amd64 and arm64)
type: boolean
required: false
default: false
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
env:
IMAGES: ${{ vars.DOCKERHUB_REPOSITORY || github.repository }}
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGES }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
- name: Login to DockerHub
if: vars.DOCKERHUB_REPOSITORY
continue-on-error: ${{ github.event_name == 'pull_request' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: ${{ (inputs.multi-platform || github.event_name == 'push') && 'linux/amd64,linux/arm64' || '' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: | # Julia's Pkg expects a Git repository
BUILDKIT_CONTEXT_KEEP_GIT_DIR=true
cache-from: type=gha
cache-to: type=gha,mode=max
push: ${{ github.event_name == 'push' }}