diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 774673de..ec74fe1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,22 +48,12 @@ jobs: if: matrix.os == 'windows-latest' run: mkdir staging-${{ matrix.os }} && gci -Path . -Recurse -Include *.jar |? { $_.FullName -like '*\target\*.jar' } |% { cp $_.FullName staging-${{ matrix.os }} } - - name: Upload build results to temporary files + - name: Upload build results uses: actions/upload-artifact@v4 with: - name: temp-results-${{ matrix.os }} + name: build-results-${{ matrix.os }} path: staging-*/ - upload: - runs-on: ubuntu-latest - needs: verify - steps: - - name: Upload build results - uses: actions/upload-artifact/merge@v4 - with: - name: Build Results - pattern: temp-results-* - verify-javadoc: name: Verify JavaDoc runs-on: ubuntu-latest