24 lines
556 B
YAML
24 lines
556 B
YAML
name: Publish Spring Boot images for smoke tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'smoke-tests/images/spring-boot/**'
|
|
- '.github/workflows/publish-smoke-test-spring-boot-images.yml'
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
uses: ./.github/workflows/reusable-smoke-test-images.yml
|
|
with:
|
|
project: ":smoke-tests:images:spring-boot"
|
|
publish: true
|
|
|
|
open-issue-on-failure:
|
|
needs:
|
|
- publish
|
|
if: failure() && github.run_attempt == 1
|
|
uses: ./.github/workflows/reusable-open-issue-on-failure.yml
|