From 9aa240e335ea8d74b1b2a6dd42a0fc5909682026 Mon Sep 17 00:00:00 2001 From: coolxitech Date: Sun, 14 Dec 2025 16:00:03 +0800 Subject: [PATCH] =?UTF-8?q?build(workflows):=20=E6=9B=B4=E6=96=B0Docker?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E7=BC=93=E5=AD=98=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在GitHub Actions工作流中启用最大模式缓存 - 添加OCI镜像描述注解支持 - 配置Docker镜像输出元数据 --- .github/workflows/ogame-vue-ts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ogame-vue-ts.yml b/.github/workflows/ogame-vue-ts.yml index 3aa3a4e..5779926 100644 --- a/.github/workflows/ogame-vue-ts.yml +++ b/.github/workflows/ogame-vue-ts.yml @@ -56,4 +56,5 @@ jobs: ${{ vars.DOCKERHUB_USERNAME != '' && format('docker.io/{0}/ogame-vue-ts:latest', vars.DOCKERHUB_USERNAME) || '' }} ${{ vars.DOCKERHUB_USERNAME != '' && format('docker.io/{0}/ogame-vue-ts:{1}', vars.DOCKERHUB_USERNAME, github.sha) || '' }} cache-from: type=gha - cache-to: type=gha,mode=max \ No newline at end of file + cache-to: type=gha,mode=max + outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=OGame Vue \ No newline at end of file