Merge pull request #450 from neurodata/tathey1-sriram #215
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: [ "develop" ] | |
# pull_request: | |
# branches: [ "develop" ] | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: docker login | |
# env: | |
# DOCKER_USER: ${{secrets.DOCKER_USER}} | |
# DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
# run: | | |
# docker login -u $DOCKER_USER -p $DOCKER_PASSWORD | |
# - name: Build the Docker image | |
# run: docker build . --file Dockerfile --tag neurodata/brainlit:latest | |
# - name: Docker Push | |
# run: docker push neurodata/brainlit |