Manual build of docker image #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Candace Savonen May 2022 | |
name: Manual build of docker image | |
on: | |
workflow_dispatch: | |
inputs: | |
directory: | |
description: 'File path on GitHub to Dockerfile? e.g. base_ottr' | |
required: true | |
type: string | |
tag: | |
description: 'Tag e.g. jhudsl/base_ottr:main' | |
required: true | |
type: string | |
dockerhubpush: | |
description: 'Push to Dockerhub? true or false' | |
required: false | |
default: 'false' | |
type: string | |
jobs: | |
build-it: | |
name: Build docker image on command | |
uses: ./.github/workflows/docker-test.yml | |
with: | |
directory: ${{github.event.inputs.directory}} | |
tag: ${{github.event.inputs.tag}} | |
dockerhubpush: ${{github.event.inputs.dockerhubpush}} | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |