Skip to content

Commit

Permalink
(NOBIDS) add hotfix-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
guybrush committed Aug 30, 2023
1 parent cce4b89 commit 3beca87
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish-hotfix-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Docker gotfix images

on:
# Trigger the workflow on push or pull request,
# but only for the feature/newfrontend branch
push:
branches:
- hotfix

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: "hotfix"

0 comments on commit 3beca87

Please sign in to comment.