publish-smoke-test-play-images.yml 762 B

1234567891011121314151617181920212223242526272829
  1. name: Publish Play images for smoke tests
  2. on:
  3. push:
  4. paths:
  5. - "smoke-tests/images/play/**"
  6. - ".github/workflows/publish-smoke-test-play-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:play"
  15. publish: true
  16. # Play doesn't support Java 16+ yet
  17. # https://github.com/playframework/playframework/pull/10819
  18. skip-java-17: true
  19. skip-java-21: true
  20. workflow-notification:
  21. needs:
  22. - publish
  23. if: always()
  24. uses: ./.github/workflows/reusable-workflow-notification.yml
  25. with:
  26. success: ${{ needs.publish.result == 'success' }}