Skip to content

Commit 3011b4f

Browse files
authored
Fix: Make sure name of artifact is aligned in release workflow (#381)
* Fix: Make sure name of artifact is aligned --------- Signed-off-by: Raphael Silva <[email protected]>
1 parent 47e6394 commit 3011b4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/patch-release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Build release with Gradle
9292
uses: gradle/gradle-build-action@v2
9393
with:
94-
arguments: build integrationTests -PlocalDocker=true --stacktrace
94+
arguments: build integrationTests -PlocalDocker=true -Prelease.version=${{ github.event.inputs.version }} --stacktrace
9595

9696
- name: Configure AWS Credentials
9797
uses: aws-actions/configure-aws-credentials@v1

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Build release with Gradle
4747
uses: gradle/gradle-build-action@v2
4848
with:
49-
arguments: build integrationTests -PlocalDocker=true --stacktrace
49+
arguments: build integrationTests -PlocalDocker=true -Prelease.version=${{ github.event.inputs.version }} --stacktrace
5050

5151
- name: Configure AWS Credentials
5252
uses: aws-actions/configure-aws-credentials@v1

0 commit comments

Comments
 (0)