publish-smoke-test-security-manager-images.yml 661 B

12345678910111213141516171819202122232425
  1. name: Publish Security Manager test app images for smoke tests
  2. on:
  3. push:
  4. paths:
  5. - "smoke-tests/images/security-manager/**"
  6. - ".github/workflows/publish-smoke-test-security-manager-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:security-manager"
  15. publish: true
  16. workflow-notification:
  17. needs:
  18. - publish
  19. if: always()
  20. uses: ./.github/workflows/reusable-workflow-notification.yml
  21. with:
  22. success: ${{ needs.publish.result == 'success' }}