fix path for generators in workflow files (#85) #34
This file contains 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: Build and publish dev container images | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "src/loaders/**" | |
- "src/services/**" | |
- "src/databases/**" | |
- "scripts/generators/docker-compose/**" | |
- "scripts/generators/k8s/**" | |
- ".github/workflows/reusable-build-container-images.yml" | |
- ".github/workflows/build-images-on-commit.yml" | |
workflow_dispatch: | |
# Declare default permissions as read-only | |
permissions: read-all | |
jobs: | |
build: | |
uses: ./.github/workflows/reusable-build-container-images.yml | |
with: | |
push: true | |
secrets: inherit |