Skip to content

Commit

Permalink
ci: upload build results in separate files
Browse files Browse the repository at this point in the history
  • Loading branch information
bjthehun committed Jan 23, 2025
1 parent 589902c commit f8e682f
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8e682f

Please sign in to comment.