Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.5 to 3.2.6 #296
Workflow file for this run
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: Continuous Integration Pull Request | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: maven | |
- name: Build with Maven | |
run: | | |
mvn -s .github/ci-maven-settings.xml -B \ | |
clean package -Dnative \ | |
-Dquarkus.native.container-build=true \ | |
-Dquarkus.container-image.build=true \ | |
-Dquarkus.container-image.additional-tags=latest | |
- name: Integration Tests with Maven | |
run: | | |
mvn -s .github/ci-maven-settings.xml -B \ | |
clean verify -Dtest-container | |
- name: Upload artifacts | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: integration-test-logs | |
retention-days: 3 | |
path: kafka-native-test-container/target/container-logs/ |