28 lines
686 B
YAML
28 lines
686 B
YAML
name: Publish Play images for smoke tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'smoke-tests/images/play/**'
|
|
- '.github/workflows/publish-smoke-test-play-images.yml'
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
uses: ./.github/workflows/reusable-smoke-test-images.yml
|
|
with:
|
|
project: ":smoke-tests:images:play"
|
|
publish: true
|
|
# Play doesn't support Java 16+ yet
|
|
# https://github.com/playframework/playframework/pull/10819
|
|
skip-java-17: true
|
|
skip-java-19: true
|
|
|
|
open-issue-on-failure:
|
|
needs:
|
|
- publish
|
|
if: failure() && github.run_attempt == 1
|
|
uses: ./.github/workflows/reusable-open-issue-on-failure.yml
|