wakapi/.github/workflows/docker.yml

65 lines
1.8 KiB
YAML
Raw Normal View History

name: Publish Docker Image
on:
release:
types:
- published
jobs:
docker-publish:
name: 'Build and publish Docker image'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set version
run: |
(git describe --tags --exact-match \
|| git symbolic-ref -q --short HEAD \
|| git rev-parse --short HEAD) > version.txt 2> /dev/null
2021-07-09 09:17:50 +03:00
- name: Set up QEMU
2023-04-04 15:52:33 +03:00
uses: docker/setup-qemu-action@v2
2021-07-09 09:17:50 +03:00
- name: Set up Docker Buildx
2023-04-04 15:52:33 +03:00
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
2023-04-04 15:52:33 +03:00
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the Container registry
2023-04-04 15:52:33 +03:00
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Metadata
id: meta
2023-04-04 15:52:33 +03:00
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}
n1try/wakapi
tags: |
latest
alpine
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{version}}
2021-12-02 15:03:38 +03:00
- name: Build and push
2023-04-04 15:52:33 +03:00
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile
push: true
2022-01-03 19:06:35 +03:00
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=registry,ref=n1try/wakapi:buildcache-alpine
cache-to: type=registry,ref=n1try/wakapi:buildcache-alpine,mode=max