Add github workflow to reproduce https://github.com/fabric8io/docker-… #1
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: DockerMavenPlugin Bug Reproducer | |
on: | |
push: | |
branches: [ use-karaf-444-in-docker ] | |
pull_request: | |
branches: [use-karaf-444-in-docker ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up OpenJDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: | | |
mvn install | |
cd docker | |
mvn install |