fixed the problem that the metadata of files that have not yet been stored in the database cannot be previewed. #308
Workflow file for this run
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: Backend Docker Image CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - 'backend/**' | |
| - '!backend/api-gateway/**' | |
| - 'scripts/images/backend/**' | |
| - '.github/workflows/docker-image-backend.yml' | |
| - '.github/workflows/docker-images-reusable.yml' | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: | |
| - 'backend/**' | |
| - '!backend/api-gateway/**' | |
| - 'scripts/images/backend/**' | |
| - '.github/workflows/docker-image-backend.yml' | |
| - '.github/workflows/docker-images-reusable.yml' | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| call-docker-build: | |
| name: Build and Push Backend Docker Image | |
| uses: ./.github/workflows/docker-images-reusable.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| with: | |
| service_name: backend | |
| build_dir: . |