Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shell-nlp authored Sep 21, 2024
1 parent 4657a51 commit 99a7ce0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docker-image.yml
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

0 comments on commit 99a7ce0

Please sign in to comment.