feat:修复下载数据集问题、删除数据确认框、修改标题、添加列表轮询刷新 #48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Frontend Docker Image CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - 'frontend/**' | |
| - 'scripts/images/frontend/**' | |
| - '.github/workflows/docker-image-frontend.yml' | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: | |
| - 'frontend/**' | |
| - 'scripts/images/frontend/**' | |
| - '.github/workflows/docker-image-frontend.yml' | |
| workflow_dispatch: | |
| jobs: | |
| call-docker-build: | |
| name: Build and Push Frontend Docker Image | |
| uses: ./.github/workflows/docker-images-reusable.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| with: | |
| service_name: frontend | |
| build_dir: . |