Skip to content

docker

docker #19

Workflow file for this run

name: docker
on:
workflow_dispatch: # manually run
inputs:
tag:
description: image tag
required: true
env:
CI: true
jobs:
publish:
name: docker-publish
runs-on: ubuntu-latest
steps:
- name: Docker login
uses: docker/login-action@v1
with:
username: tmcgroul
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker build and push
uses: docker/build-push-action@v3
with:
push: true
tags: tmcgroul/firehose-grpc:${{ inputs.tag }}