block-explorer/.workflows/dockerhub.yml
2021-01-17 21:54:44 +01:00

18 lines
491 B
YAML

name: Publish Docker image
on:
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: Push to Docker Hub
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: lbry/block-explorer
tag_with_ref: true