23 lines
570 B
YAML
23 lines
570 B
YAML
name: 打包发布docker镜像
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 拉取代码🔄
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx🔧
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
|
|
- name: 打包并发布镜像📦
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile # 指定 Dockerfile 路径
|
|
tags: registry.fandouke.com/test-image:latest # 镜像标签(包含 Registry 地址)
|
|
push: true |