Skip to content

build images, deploy to ghcr #137

build images, deploy to ghcr

build images, deploy to ghcr #137

Workflow file for this run

name: docker
run-name: build images, deploy to ghcr
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'talkdai/dialog'
environment: build
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PKG_GITHUB_TOKEN }}
- name: ghcr.io/talkdai/dialog:latest
env:
GITHUB_REF: ${GITHUB_REF}
run: |
docker build -t ghcr.io/talkdai/dialog:latest .
docker push ghcr.io/talkdai/dialog:latest