Merge pull request #22 from kysrpex/bump_version #42
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: [push] | |
jobs: | |
build-and-publish-head: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' # Running this job only for develop branch | |
steps: | |
- uses: actions/checkout@v2 # Checking out the repo | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: galaxy/gx-it-proxy | |
workdir: docker | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |