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