Skip to content

Commit f274dc6

Browse files
committed
chore: fix publishing
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent a94c6cd commit f274dc6

File tree

11 files changed

+71
-915
lines changed

11 files changed

+71
-915
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Main CI
2+
name: Java CI with Gradle
3+
4+
on:
5+
push:
6+
branches: [ main ]
7+
pull_request:
8+
branches: [ main ]
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
16+
configure_sonar:
17+
runs-on: ubuntu-latest
18+
if: github.event_name == 'pull_request'
19+
20+
steps:
21+
- name: Save Sonar config on PR
22+
run: |
23+
mkdir -p ./prInfo
24+
echo ${{ github.event.number }} > ./prInfo/PR
25+
echo ${{ github.base_ref }} > ./prInfo/base_ref
26+
echo ${{ github.head_ref }} > ./prInfo/head_ref
27+
- uses: actions/upload-artifact@v4
28+
with:
29+
name: prInfo
30+
path: prInfo/

.github/workflows/dialogs.information_settings_ultimate.yml

Lines changed: 0 additions & 127 deletions
This file was deleted.

.github/workflows/dialogs.project_manipulation_ultimate.yml

Lines changed: 0 additions & 133 deletions
This file was deleted.

0 commit comments

Comments
 (0)