Merge pull request #736 from IU-Libraries-Joint-Development/essi-2241… #69
This file contains hidden or 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 Stable Branch | |
| on: | |
| push: | |
| branches: [ '**-stable' ] | |
| 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 stable 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: "stable,${{ env.BRANCH_NAME }}" | |
| env: | |
| SOURCE_COMMIT: ${{ github.sha }} |