[ESSI-875] cherry-pick ImportFileSetJob retry logic from 0de8ee06 #146
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: Docker Image CI Test Branch | |
on: | |
push: | |
branches: [ test-** ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get branch name | |
id: get_branch | |
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF:11})" >> $GITHUB_ENV | |
- name: Build and push to Docker Hub | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: iublibtech/essi | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_AUTH_TOKEN }} | |
buildargs: SOURCE_COMMIT | |
tags: "test,${{ env.BRANCH_NAME }}" | |
env: | |
SOURCE_COMMIT: ${{ github.sha }} |