mirror of
https://github.com/coaidev/coai.git
synced 2025-06-01 11:20:26 +09:00
27 lines
544 B
YAML
27 lines
544 B
YAML
name: Docker CD
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag programzmh/chatnio:stable
|
|
|
|
- name: Push to DockerHub
|
|
run: docker push programzmh/chatnio:stable
|