Skip to content

Commit

Permalink
Merge pull request #7765 from mbien/ci-devbuild-pr-numbers
Browse files Browse the repository at this point in the history
Add PR number to dev build artifact
  • Loading branch information
mbien authored Sep 20, 2024
2 parents 7c2ae32 + be6cabf commit bf86689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
if: ${{ matrix.java == '17' && contains(github.event.pull_request.labels.*.name, 'ci:dev-build') && success() }}
uses: actions/upload-artifact@v4
with:
name: dev-build
name: dev-build_${{github.event.pull_request.number || github.run_id}}
path: nbbuild/NetBeans-*.zip
compression-level: 0
retention-days: 7
Expand Down Expand Up @@ -2650,5 +2650,5 @@ jobs:
uses: geekyeggo/delete-artifact@v5
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci:dev-build') && cancelled() }}
with:
name: dev-build
name: dev-build_${{github.event.pull_request.number || github.run_id}}
useGlob: false

0 comments on commit bf86689

Please sign in to comment.