v0.0.58 #60
Workflow file for this run
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: ChatChat Version Docker Image CI | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
- name: Extract tag name | |
id: extract_tag | |
run: echo "##[set-output name=tag;]$(echo ${GITHUB_REF#refs/tags/})" | |
- name: Build Docker image | |
run: docker build -t ghcr.io/okisdev/chatchat:${{ steps.extract_tag.outputs.tag }} -t ghcr.io/okisdev/chatchat:latest . | |
- name: Push Docker image to GHCR | |
run: | | |
docker push ghcr.io/okisdev/chatchat:${{ steps.extract_tag.outputs.tag }} | |
docker push ghcr.io/okisdev/chatchat:latest | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Tag Docker image for Docker Hub | |
run: | | |
docker tag ghcr.io/okisdev/chatchat:${{ steps.extract_tag.outputs.tag }} okisdev/chatchat:${{ steps.extract_tag.outputs.tag }} | |
docker tag ghcr.io/okisdev/chatchat:latest okisdev/chatchat:latest | |
- name: Push Docker image to Docker Hub | |
run: | | |
docker push okisdev/chatchat:${{ steps.extract_tag.outputs.tag }} | |
docker push okisdev/chatchat:latest |