Develocity - Publish Maven Build Scans #20264
This file contains hidden or 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: Develocity - Publish Maven Build Scans | |
on: | |
workflow_run: | |
workflows: [ "Quarkus CI" ] | |
types: [ completed ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
publish-build-scans: | |
if: github.repository == 'quarkusio/quarkus' && github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion != 'cancelled' | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
pull-requests: write | |
checks: write | |
steps: | |
- name: Setup Build Scan link capture | |
id: setup | |
uses: gradle/develocity-actions/[email protected] | |
with: | |
add-pr-comment: false | |
add-job-summary: true | |
- name: Publish Maven Build Scans | |
id: publish | |
uses: gradle/develocity-actions/[email protected] | |
with: | |
develocity-url: 'https://ge.quarkus.io' | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: Upload JSON file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-metadata.json | |
path: ${{ steps.setup.outputs.build-metadata-file-path }} | |
- name: Output JSON file | |
run: | | |
if [ -f "${{ steps.setup.outputs.build-metadata-file-path }}" ]; then | |
echo '```json' >> $GITHUB_STEP_SUMMARY | |
jq '.' "${{ steps.setup.outputs.build-metadata-file-path }}" >> $GITHUB_STEP_SUMMARY | |
echo -e "\n\`\`\`" >> $GITHUB_STEP_SUMMARY; | |
fi | |
- name: Inject build scans in reports | |
uses: quarkusio/action-helpers@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
action: inject-build-scans | |
workflow-run-id: ${{ github.event.workflow_run.id }} | |
build-metadata-file-path: ${{ steps.setup.outputs.build-metadata-file-path }} |