Skip to content

docker-release

docker-release #259

Workflow file for this run

name: docker-release
on:
schedule:
- cron: "0 9,21 * * *"
workflow_dispatch:
jobs:
docker:
name: Build and Push - ${{ matrix.recipes }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
recipes: ["binder", "scanexitron"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract version
id: extract_version
run: |
VERSION=$(grep 'ARG VERSION=' ./recipes/${{ matrix.recipes }}/Dockerfile | awk -F'=' '{print $2}')
if [ -z "$VERSION" ]; then
VERSION='latest'
fi
echo "::set-output name=version::${VERSION}"
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./recipes/${{ matrix.recipes }}
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: yanglabinfo/${{ matrix.recipes }}:${{ steps.extract_version.outputs.version }}