Skip to content

Commit a6f70a3

Browse files
committed
build all modules
1 parent 83d637a commit a6f70a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cache-for-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
cache: 'maven'
3535

3636
- name: 'Fetch dependencies for cache'
37-
run: mvn --batch-mode --fail-never dependency:resolve dependency:resolve-plugins
37+
run: mvn --no-transfer-progress --batch-mode -Dall --fail-never dependency:resolve dependency:resolve-plugins

.github/workflows/deploy-to-github.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343

4444
- name: 'Apply patches from package utils'
45-
run: for i in packageutils/patches/*.patch; do git apply $i; done
45+
run: for i in packageutils/patches/*.patch; do echo "Applying patch $i"; git apply $i; done
4646

4747
- uses: actions/setup-java@v4
4848
with:
@@ -51,6 +51,6 @@ jobs:
5151
cache: 'maven'
5252

5353
- name: Publish package
54-
run: mvn --no-transfer-progress --batch-mode deploy -DaltDeploymentRepository=github::default::https://maven.pkg.github.com/${{github.repository}}
54+
run: mvn --no-transfer-progress --batch-mode deploy -Dall -DaltDeploymentRepository=github::default::https://maven.pkg.github.com/${{github.repository}}
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)