diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 9e5bf12..e5e91e9 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -28,4 +28,12 @@ jobs: distribution: 'temurin' cache: maven - name: Build with Maven - run: mvn -B package --file pom.xml + run: | + mvn -B package --file pom.xml + mkdir staging && cp target/*.jar staging + - name: Persist workflow data as artifacts + uses: actions/upload-artifact@v2 + with: + name: github-actions-artifacts + path: staging +