Merge branch 'master' of https://github.com/Masterxilo/google-auth-li… #16
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image | |
run: ( docker pull masterxilo/google-auth-library-token || true ) && docker build . --file Dockerfile --tag masterxilo/google-auth-library-token --cache-from masterxilo/google-auth-library-token | |
- name: Push the Docker image | |
run: echo ${{ secrets.MASTERXILO_DOCKER_IO_PASSWORD }} | docker login --username masterxilo --password-stdin docker.io && docker push masterxilo/google-auth-library-token && docker logout |