👷 ci(workflow): 适配 Gitea Actions 并优化构建流程
Some checks failed
Virtual Kubelet Docker Build and Deploy / build-and-deploy (push) Failing after 56s
Some checks failed
Virtual Kubelet Docker Build and Deploy / build-and-deploy (push) Failing after 56s
- 移除对 GitHub Actions 的 `pull_request` 触发器,仅保留标签推送触发 - 将所有 GitHub Actions 官方引用替换为对应的 Gitea 镜像仓库地址 - 将工作流上下文变量从 `github.*` 统一更新为 `gitea.*` - 优化步骤结构,将部分 `run` 命令合并为独立步骤以提高可读性 - 在 Docker Buildx 设置步骤中,显式指定构建器驱动镜像和网络配置 - 在构建并推送镜像步骤中,为镜像标签添加基于提取版本号的动态标签 - 更新容器镜像元数据中的源代码和修订版本信息源为 Gitea
This commit is contained in:
50
.github/workflows/build.yaml
vendored
50
.github/workflows/build.yaml
vendored
@@ -3,54 +3,58 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 输出触发信息
|
||||
run: |
|
||||
echo "🎉 该作业由 ${{ github.event_name }} 事件自动触发。"
|
||||
echo "🐧 此作业当前在 GitHub 托管的 ${{ runner.os }} 服务器上运行!"
|
||||
echo "🔎 您的发布版本是 ${{ github.ref_name }},仓库是 ${{ github.repository }}。"
|
||||
- run: echo "🎉 该作业由 ${{ gitea.event_name }} 事件自动触发。"
|
||||
- run: echo "🐧 此作业当前在 Gitea 托管的 ${{ runner.os }} 服务器上运行!"
|
||||
- run: echo "🔎 您的标签名称是 ${{ gitea.ref_name }},仓库是 ${{ gitea.repository }}。"
|
||||
|
||||
- name: 检出仓库代码
|
||||
uses: actions/checkout@v4
|
||||
uses: https://gitee.com/zyh320888/checkout@v4
|
||||
|
||||
- name: 输出工作区信息
|
||||
- run: echo "💡 ${{ gitea.repository }} 仓库已克隆到运行器。"
|
||||
- run: echo "🖥️ 工作流现在已准备好在运行器上测试您的代码。"
|
||||
|
||||
- name: 列出仓库中的文件
|
||||
run: |
|
||||
echo "💡 ${{ github.repository }} 仓库已克隆到运行器。"
|
||||
echo "🖥️ 工作流现在已准备好在运行器上测试您的代码。"
|
||||
ls -la ${{ github.workspace }}
|
||||
echo "🍏 此作业的状态是 ${{ job.status }}。"
|
||||
ls -la ${{ gitea.workspace }}
|
||||
|
||||
- run: echo "🍏 此作业的状态是 ${{ job.status }}。"
|
||||
|
||||
- name: 设置 Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: 从标签名中提取版本号
|
||||
uses: https://gitee.com/zyh320888/setup-buildx-action@v3
|
||||
with:
|
||||
driver-opts: |
|
||||
image=docker.1ms.run/moby/buildkit:master
|
||||
network=host
|
||||
|
||||
- name: 提取版本号
|
||||
id: extract_version
|
||||
run: |
|
||||
# 从Release标签名中提取版本号,例如从 v0.1.0 中提取 v0.1.0
|
||||
VERSION=$(echo "${{ github.ref_name }}" | sed 's|refs/tags/||')
|
||||
# 从标签名中提取版本号,例如从 v0.1.0 中提取 v0.1.0
|
||||
VERSION=$(echo "${{ gitea.ref_name }}")
|
||||
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||
echo "提取的版本号:$VERSION"
|
||||
|
||||
|
||||
- name: 登录 Docker 注册表
|
||||
uses: docker/login-action@v3
|
||||
uses: https://gitee.com/zyh320888/login-action@v3
|
||||
with:
|
||||
registry: registry.cn-beijing.aliyuncs.com
|
||||
username: ${{ secrets.ALI_DOCKER_REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.ALI_DOCKER_REGISTRY_PASSWORD }}
|
||||
|
||||
- name: 构建并推送 Virtual Kubelet 镜像
|
||||
uses: docker/build-push-action@v5
|
||||
uses: https://gitee.com/zyh320888/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile # 确保Dockerfile路径正确
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: |
|
||||
registry.cn-beijing.aliyuncs.com/d8dcloud/virtual-kubelet:eci-alpine
|
||||
registry.cn-beijing.aliyuncs.com/d8dcloud/virtual-kubelet:${{ env.VERSION }}
|
||||
build-args: |
|
||||
GOLANG_CI_LINT_VERSION=v1.68.0
|
||||
BUILD_TAGS=""
|
||||
@@ -58,5 +62,5 @@ jobs:
|
||||
org.opencontainers.image.title=Virtual Kubelet
|
||||
org.opencontainers.image.description=Kubernetes Virtual Kubelet implementation
|
||||
org.opencontainers.image.version=${{ env.VERSION }}
|
||||
org.opencontainers.image.source=${{ github.repositoryUrl }}
|
||||
org.opencontainers.image.revision=${{ github.sha }}
|
||||
org.opencontainers.image.source=${{ gitea.repositoryUrl }}
|
||||
org.opencontainers.image.revision=${{ gitea.sha }}
|
||||
|
||||
Reference in New Issue
Block a user