Skip to content

Commit

Permalink
Merge pull request #1903 from gobitfly/NOBIDS/BuildDockerTagsAutomati…
Browse files Browse the repository at this point in the history
…cally

(NOBIDS) Build docker from new tags automatically
  • Loading branch information
peterbitfly authored Mar 8, 2023
2 parents a5ed1f3 + fad7ba1 commit 29106f6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish-tag-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish Docker tag images

on:
push:
tags:
- 'v1.*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish to Dockerhub Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: gobitfly/eth2-beaconchain-explorer
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 29106f6

Please sign in to comment.