Merge pull request #3 from MuShare/issue/143 #23
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_publish_staging | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build and push staging docker image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Log into Docker Hub Container Registry | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
- name: Build image | |
run: make ci-build-staging |