fix(646041134a23bf897790933979994c122468e8a1): correct equal statement #194
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
on: | |
push: | |
branches: | |
- master | |
name: Build and push docker image to container registry | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build image. | |
run: docker build -t ghcr.io/androiddumps/dumpbot . | |
- name: Login to container registry | |
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io --username androiddumps --password-stdin | |
- name: Push image | |
run: docker push ghcr.io/androiddumps/dumpbot |