docs: MFSL v2 spec 更新——注释流程修正 + 数据统计 + MetaboFlow 对口 #43
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/ |