2023-04-23 18:57:57 +02:00
|
|
|
name: Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-push:
|
|
|
|
runs-on: ubuntu-latest
|
2023-04-23 23:32:56 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
[linux/amd64, linux/arm64, linux/arm/v7, linux/arm/v6, linux/386]
|
2023-04-23 18:57:57 +02:00
|
|
|
steps:
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
2023-04-23 23:32:56 +02:00
|
|
|
platforms: ${{ matrix.platform }}
|
2023-04-23 18:57:57 +02:00
|
|
|
push: true
|
2023-04-23 22:05:49 +02:00
|
|
|
tags: delta1925/simple-wkd:latest,delta1925/simple-wkd:${{ github.ref_name }}
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|