Skip to content

Commit dd7aeb4

Browse files
authored
Fix approval workflows (#245)
1 parent 9af3d5d commit dd7aeb4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build snapshot with Gradle
3636
uses: gradle/gradle-build-action@v2
3737
with:
38-
arguments: build snapshot --stacktrace -PenableCoverage=true
38+
arguments: build integrationTests snapshot --stacktrace -PenableCoverage=true -PlocalDocker=true
3939
env:
4040
PUBLISH_USERNAME: ${{ secrets.PUBLISH_USERNAME }}
4141
PUBLISH_PASSWORD: ${{ secrets.PUBLISH_PASSWORD }}

.github/workflows/release-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ jobs:
3535
- name: Build release with Gradle
3636
uses: gradle/gradle-build-action@v2
3737
with:
38-
arguments: build jib final closeAndReleaseSonatypeStagingRepository -Prelease.version=${{ github.event.inputs.version }} --stacktrace
38+
arguments: build integrationTests final closeAndReleaseSonatypeStagingRepository -Prelease.version=${{ github.event.inputs.version }} -PlocalDocker=true --stacktrace
3939
env:
4040
PUBLISH_USERNAME: ${{ secrets.PUBLISH_USERNAME }}
4141
PUBLISH_PASSWORD: ${{ secrets.PUBLISH_PASSWORD }}
4242
GRGIT_USER: ${{ secrets.GITHUB_TOKEN }}
43-
COMMIT_HASH: ${{ github.event.inputs.version }}
4443
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
4544
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
4645

0 commit comments

Comments
 (0)