Skip to content

fix: combine build and deploy #5

fix: combine build and deploy

fix: combine build and deploy #5

Workflow file for this run

name: publish
on: [push]
jobs:
publish-chronos-image:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.AMN_PAT }}
- name: Build the chronos Docker image
run: |
docker build -f Dockerfile.chronos . --tag ghcr.io/kindredgroup/chronos:latest
docker push ghcr.io/kindredgroup/chronos:latest