publish-smoke-test-spring-boot-images.yml 529 B

1234567891011121314151617181920212223
  1. name: Publish Spring Boot images for smoke tests
  2. on:
  3. push:
  4. paths:
  5. - 'smoke-tests/images/spring-boot/**'
  6. - '.github/workflows/publish-smoke-test-spring-boot-images.yml'
  7. branches:
  8. - main
  9. workflow_dispatch:
  10. jobs:
  11. publish:
  12. uses: ./.github/workflows/reusable-smoke-test-images.yml
  13. with:
  14. project: ":smoke-tests:images:spring-boot"
  15. publish: true
  16. open-issue-on-failure:
  17. needs:
  18. - publish
  19. if: failure()
  20. uses: ./.github/workflows/reusable-open-issue-on-failure.yml