Skip to content

Fix publishing

Fix publishing #540

Workflow file for this run

# Main CI
name: Java CI with Gradle
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
configure_sonar:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Save Sonar config on PR
run: |
mkdir -p ./prInfo
echo ${{ github.event.number }} > ./prInfo/PR
echo ${{ github.base_ref }} > ./prInfo/base_ref
echo ${{ github.head_ref }} > ./prInfo/head_ref
- uses: actions/upload-artifact@v4
with:
name: prInfo
path: prInfo/