docs: MFSL v2 实现计划(4 Task: MSP标签写入 + TagFilter对齐 + MANUAL重构 + 清理验证) #45
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: Docker Build | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-xcms-worker: | |
| name: Build xcms-worker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build xcms-worker (no cache) | |
| run: | | |
| docker build --no-cache \ | |
| -t metaboflow/xcms-worker:ci \ | |
| packages/engines/xcms-worker/ | |
| build-stats-worker: | |
| name: Build stats-worker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build stats-worker (no cache) | |
| run: | | |
| docker build --no-cache \ | |
| -t metaboflow/stats-worker:ci \ | |
| packages/engines/stats-worker/ |