Update Dockerfile #25
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: Fixup for depracated dependencies | |
run: | | |
git config --global http.sslverify "false" | |
git config --global url."https://".insteadOf "git://" | |
- name: Build image | |
run: make ci-build-staging |