publish-smoke-test-quarkus-images.yml 685 B

123456789101112131415161718192021222324252627
  1. name: Publish Quarkus images for smoke tests
  2. on:
  3. push:
  4. paths:
  5. - "smoke-tests/images/quarkus/**"
  6. - ".github/workflows/publish-smoke-test-quarkus-images.yml"
  7. - ".github/workflows/reusable-smoke-test-images.yml"
  8. branches:
  9. - main
  10. jobs:
  11. publish:
  12. uses: ./.github/workflows/reusable-smoke-test-images.yml
  13. with:
  14. project: ":smoke-tests:images:quarkus"
  15. publish: true
  16. # Quarkus 2.0+ does not support Java 8
  17. skip-java-8: true
  18. workflow-notification:
  19. needs:
  20. - publish
  21. if: always()
  22. uses: ./.github/workflows/reusable-workflow-notification.yml
  23. with:
  24. success: ${{ needs.publish.result == 'success' }}