Skip to content

Commit

Permalink
Add github action for docker publishing (#205)
Browse files Browse the repository at this point in the history
* Add github action for docker publishing
  • Loading branch information
worldtiki authored Jul 23, 2021
1 parent ba70b4b commit 09a682e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publish Docker image

on:
push:
tags:
- '*'

jobs:
publish-docker:

runs-on: ubuntu-latest

steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ayushsobti/kubemonkey
# Generate Docker tags based on the following events/attributes
tags: |
type=ref,event=tag
- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v2
with:
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 09a682e

Please sign in to comment.