feat(api) : Peers function to return the PrimaryAlias of the chainID … #755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker Image | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*" | |
branches: | |
- master | |
- dev | |
jobs: | |
publish_docker_image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Publish image to DockerHub | |
env: | |
DOCKER_USERNAME: ${{ secrets.docker_username }} | |
DOCKER_PASS: ${{ secrets.docker_pass }} | |
DOCKER_REPO: ${{ secrets.docker_repo }} | |
run: .github/workflows/publish_image.sh |