Skip to content

Commit

Permalink
Create push-docker-hub.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
iosdev747 authored Aug 8, 2024
1 parent 2219c25 commit ea9e81b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/push-docker-hub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release and Push to Docker Hub

on:
workflow_dispatch:
inputs:
releaseVersion:
description: 'Docker image tag'
type: string
required: true

jobs:
call-workflow-docker-build:
uses: flipkart-incubator/varadhi/.github/workflows/docker-image.yml@master
with:
pushToDockerHub: true
releaseVersion: ${{ inputs.releaseVersion }}
secrets:
dockerHubToken: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

0 comments on commit ea9e81b

Please sign in to comment.