publish-smoke-test-spring-boot-images.yml 550 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. build-root-directory: smoke-tests/images/spring-boot
  15. publish: true
  16. issue:
  17. name: Open issue on failure
  18. needs: publish
  19. if: failure()
  20. uses: ./.github/workflows/reusable-create-issue-for-failure.yml