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

66 lines
2 KiB
YAML
Raw Normal View History

2023-04-23 18:57:57 +02:00
name: Docker
on:
release:
types: [published]
jobs:
2023-04-25 14:44:14 +02:00
build:
2023-04-23 18:57:57 +02:00
runs-on: ubuntu-latest
strategy:
matrix:
2023-04-25 14:44:14 +02:00
include:
- platform: linux/amd64
arch: x86_64
- platform: linux/arm64
arch: aarch64
- platform: linux/arm/v7
arch: armv7
- platform: linux/arm/v6
arch: arm
- platform: linux/386
arch: i686
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
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:
platforms: ${{ matrix.platform }}
2023-04-25 14:44:14 +02:00
tags: delta1925/simple-wkd:${{ matrix.arch }}
outputs: type=docker,dest=/tmp/simple-wkd-${{ matrix.arch }}.tar
2023-04-23 22:05:49 +02:00
cache-from: type=gha
cache-to: type=gha,mode=max
2023-04-25 14:44:14 +02:00
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: simple-wkd-${{ matrix.arch }}
path: /tmp/simple-wkd-${{ matrix.arch }}.tar
push:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
include:
- tag: latest
- tag: ${{ github.ref_name }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: /tmp/simple-wkd
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
run: docker login -p ${{ secrets.DOCKERHUB_TOKEN }} -u ${{ secrets.DOCKERHUB_USERNAME }}
- name: Load images
run: find /tmp/simple-wkd -iname "simple-wkd-*.tar" -exec docker load --input {} \
- name: Create manifest
run: docker manifest create delta1925/simple-wkd:${{ matrix.tag }} simple-wkd:x86_64 simple-wkd:aarch64 simple-wkd:armv7 simple-wkd:arm simple-wkd:i686
- name: Push images
run: docker matifest push delta1925/simple-wkd:${{ matrix.tag }}
- name: Logout from Docker hub
run: docker logout