Browse Source

Add workflow to push to DockerHub on tag

pull/34/head
Abheek Dhawan 3 years ago
parent
commit
1534c25955
Signed by: abheekd GPG Key ID: 7BE81B8C14475B67
  1. 34
      .github/workflows/dockerhub-publish.yml

34
.github/workflows/dockerhub-publish.yml

@ -0,0 +1,34 @@
name: publish-dockerhub-image
on:
push:
tags:
- "*"
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: adawesomeguy/awesomescibo
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Loading…
Cancel
Save