-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# 检出代码 | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
# 登录 Docker Hub | ||
- name: Log in to Docker Hub | ||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
# 构建 Docker 镜像 | ||
- name: Build Docker image | ||
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/gpt_server:latest . | ||
# 推送镜像到 Docker Hub | ||
- name: Push Docker image | ||
run: docker push ${{ secrets.DOCKER_USERNAME }}/gpt_server:latest |