Minor fixes

This commit is contained in:
2022-02-06 13:01:26 +03:00
parent 0e574038cb
commit 08f9464887
2 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }}
- name: Build application with Gradle
run: ./gradlew clean build bootJar -p ${{ inputs.MODULE_NAME }}
run: ./gradlew bootJar -p ${{ inputs.MODULE_NAME }}
env:
GITHUB_USERNAME: ${{ secrets.SECRET_GITHUB_USERNAME }}
GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }}
@@ -106,4 +106,4 @@ jobs:
- name: Logout of Amazon ECR
if: always() && ${{ inputs.IS_ECR_PUSH_ENABLED }}
run: docker logout ${{ steps.login-ecr.outputs.registry }}
run: docker logout ${{ steps.login-ecr.outputs.registry }}

View File

@@ -62,7 +62,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }}
- name: Build application with Gradle
run: ./gradlew clean build bootJar
run: ./gradlew bootJar
env:
GITHUB_USERNAME: ${{ secrets.SECRET_GITHUB_USERNAME }}
GITHUB_TOKEN: ${{ secrets.SECRET_GITHUB_TOKEN }}
@@ -99,4 +99,4 @@ jobs:
- name: Logout of Amazon ECR
if: always() && ${{ inputs.IS_ECR_PUSH_ENABLED }}
run: docker logout ${{ steps.login-ecr.outputs.registry }}
run: docker logout ${{ steps.login-ecr.outputs.registry }}