feat(stages)!: staged builds for images #16
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, test, and push Docker Images | ||
on: | ||
push: | ||
branches: | ||
- "master" | ||
paths: | ||
- ".github/workflows/docker.yml" | ||
- "images/**" | ||
- "!images/*/README.md" | ||
- "tests/**" | ||
- "!tests/README.md" | ||
- "requirements-dev.txt" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/docker.yml" | ||
- "images/**" | ||
- "!images/*/README.md" | ||
- "tests/**" | ||
- "!tests/README.md" | ||
- "requirements-dev.txt" | ||
jobs: | ||
base-cpu: | ||
uses: ./.github/workflows/docker-build-test-upload.yaml | ||
Check failure on line 26 in .github/workflows/docker.yaml GitHub Actions / Build, test, and push Docker ImagesInvalid workflow file
|
||
with: | ||
parent-image: "" | ||
image: "base-cpu" | ||
secrets: | ||
registry-username: ${{ secrets.REGISTRY_USERNAME }} | ||
registry-password: ${{ secrets.REGISTRY_PASSWORD }} |