Bump io.quarkus from 3.2.0.Final to 3.2.1.Final (#8987) #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Quarkus images for smoke tests | |
on: | |
push: | |
paths: | |
- 'smoke-tests/images/quarkus/**' | |
- '.github/workflows/publish-smoke-test-quarkus-images.yml' | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish: | |
uses: ./.github/workflows/reusable-smoke-test-images.yml | |
with: | |
project: ":smoke-tests:images:quarkus" | |
publish: true | |
# Quarkus 2.0+ does not support Java 8 | |
skip-java-8: true | |
workflow-notification: | |
needs: | |
- publish | |
if: always() | |
uses: ./.github/workflows/reusable-workflow-notification.yml | |
with: | |
success: ${{ needs.publish.result == 'success' }} |