diff --git a/.github/workflows/docker-img-push.yaml b/.github/workflows/docker-img-push.yaml index 465ee8c..d160055 100644 --- a/.github/workflows/docker-img-push.yaml +++ b/.github/workflows/docker-img-push.yaml @@ -3,6 +3,7 @@ on: push: branches: - master + pull_request: jobs: build: runs-on: ubuntu-latest @@ -39,7 +40,7 @@ jobs: uses: docker/build-push-action@v6 with: context: Dockerfiles - file: ${{ matrix.dockerfile }} + file: Dockerfiles/${{ matrix.dockerfile }} push: false tags: ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }} - name: Build and push Docker image @@ -47,7 +48,7 @@ jobs: uses: docker/build-push-action@v6 with: context: Dockerfiles - file: ${{ matrix.dockerfile }} + file: Dockerfiles/${{ matrix.dockerfile }} push: true tags: ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }} cache-from: type=registry,ref=ghcr.io/${{ env.IMG_REPO_NAME }}:${{ env.TAG_NAME }} diff --git a/README.md b/README.md index c43d72a..02e26f1 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,7 @@ maintaining code quality and documentation consistency. It includes: To install Project Template, follow these steps: -1. **Clone the repository:** - - ```bash - git clone https://github.com/gvatsal60/project-template.git - cd project-template - ``` - -2. **Customize According to Your Project:** +1. **Customize According to Your Project:** * Replace `[Project Name]` * Update `[contact email]` * Follow `[coding style guide]`