0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-10-30 01:25:53 +01:00
simple-wkd/.github/workflows/docker.yml

27 lines
832 B
YAML
Raw Permalink Normal View History

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:
2023-05-20 19:57:44 +02:00
username: ${{ vars.DOCKERHUB_USERNAME }}
2023-04-25 14:48:17 +02:00
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:57:44 +02:00
tags: ${{ vars.DOCKERHUB_USERNAME }}/simple-wkd:latest,${{ vars.DOCKERHUB_USERNAME }}/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