Skip to content

Merge pull request #125 from thirdeye-dev/0x0elliot/stop-contract-mon… #60

Merge pull request #125 from thirdeye-dev/0x0elliot/stop-contract-mon…

Merge pull request #125 from thirdeye-dev/0x0elliot/stop-contract-mon… #60

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- master
paths:
- '**.py'
- '**.sh'
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker backend image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile
push: true
tags: ghcr.io/thirdeye-dev/thirdeye:latest