Skip to content

Add support for application admins (#77) #101

Add support for application admins (#77)

Add support for application admins (#77) #101

Workflow file for this run

name: Publish Leek Demo Docker image (QA)
on:
push:
branches:
- master
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push to Docker Hub
uses: docker/build-push-action@v2
with:
context: demo
push: true
tags: |
kodhive/leek-demo:qa
cache-from: type=registry,ref=kodhive/leek-demo:cache
cache-to: type=registry,ref=kodhive/leek-demo:cache