Skip to content

Commit

Permalink
refined pipeline 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
david-kraslan committed Oct 29, 2024
1 parent f2b4f5f commit bb1a8d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-pipeline-app.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Pipeline Web3 Client
name: CI Pipeline Web3 App

on:
push:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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 .
Expand Down

0 comments on commit bb1a8d3

Please sign in to comment.