Skip to content

Commit

Permalink
Add GitHub Action to publish multi-arch image
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel Leroy committed Dec 20, 2022
1 parent a66a59c commit 5f47f5d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Docker publish tagged version

on:
push:
tags:
- 'v[0-9].[0-9]+.[0-9]+'

jobs:
docker:
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
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/386,linux/ppc64le,linux/s390x
tags: axeleroy/wakeonlan-cron-docker:latest,axeleroy/wakeonlan-cron-docker:${{ github.ref_name }}

0 comments on commit 5f47f5d

Please sign in to comment.