feature: 清洗任务详情页 (#73)

* feature: 清洗任务详情

* fix: 取消构建镜像,改为直接拉取

* fix: 增加清洗任务详情页

* fix: 增加清洗任务详情页

* fix: 算子列表可点击

* fix: 模板详情和更新
This commit is contained in:
hhhhsc701
2025-11-12 18:00:19 +08:00
committed by GitHub
parent 442e561817
commit 6bbde0ec56
46 changed files with 1065 additions and 795 deletions

27
.github/workflows/docker-image-save.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: docker-image-save.yml
on:
workflow_call:
inputs:
service_name:
required: true
type: string
jobs:
pull-and-save:
runs-on: ubuntu-latest
steps:
- name: Pull Docker Image
run: |
LOWERCASE_REPO=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
docker pull ghcr.io/$LOWERCASE_REPO/datamate-${{ inputs.service_name }}:latest
docker tag ghcr.io/$LOWERCASE_REPO/datamate-${{ inputs.service_name }}:latest datamate-${{ inputs.service_name }}:latest
- name: Save Docker Image
run: |
docker save -o datamate-${{ inputs.service_name }}.tar datamate-${{ inputs.service_name }}:latest
- name: Upload Docker Image
uses: actions/upload-artifact@v4
with:
name: datamate-${{ inputs.service_name }}
path: datamate-${{ inputs.service_name }}.tar