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

12345678910111213141516171819202122
  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: publish
  18. if: failure()
  19. uses: ./.github/workflows/reusable-open-issue-on-failure.yml