diff --git a/.github/workflows/ci-pipeline-app.yml b/.github/workflows/ci-pipeline-app.yml index e6c248a..4d2af9f 100644 --- a/.github/workflows/ci-pipeline-app.yml +++ b/.github/workflows/ci-pipeline-app.yml @@ -1,4 +1,4 @@ -name: CI Pipeline Web3 Client +name: CI Pipeline Web3 App on: push: @@ -117,7 +117,7 @@ jobs: SUPER_LINTER_OUTPUT_DIRECTORY_NAME: super-linter-output GITHUB_TOKEN: ${{ secrets.PAT_GITHUB }} - client-build: + webapp-build: name: Build Client Code runs-on: ubuntu-latest needs: lint @@ -148,7 +148,7 @@ jobs: sonarcloud: name: SonarCloud Quality Gate runs-on: ubuntu-latest - needs: client-build + needs: webapp-build defaults: run: working-directory: ./app @@ -175,7 +175,7 @@ jobs: -Dsonar.verbose=true docker_image: - name: Build, Scan and push Client Docker Image to ECR + name: Build, Scan and push Webapp Docker Image to ECR runs-on: ubuntu-latest needs: sonarcloud defaults: @@ -199,7 +199,7 @@ jobs: - name: Build Docker image env: REGISTRY: ${{ steps.login-ecr.outputs.registry }} - REPOSITORY: ${{ secrets.ECR_CLIENT_REPOSITORY_NAME }} + REPOSITORY: ${{ secrets.ECR_WEBAPP_REPOSITORY_NAME }} IMAGE_TAG: 0.1.0 run: | docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .