From c916bc2d53dec8c5ed33e6b031fcc246c393ac8e Mon Sep 17 00:00:00 2001 From: Gert Drapers Date: Tue, 25 Jun 2024 14:57:30 -0700 Subject: [PATCH] consistency --- .github/workflows/ci.yaml | 10 +++++----- README.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a55eb3..1eb2a24 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - - name: Read Configuration + name: Read configuration uses: hashicorp/vault-action@v3 id: vault with: @@ -50,7 +50,7 @@ jobs: with: fetch-depth: 0 - - name: Install Deps + name: Install deps run: make deps - name: Clean Generated Code @@ -75,7 +75,7 @@ jobs: needs: build steps: - - name: Read Configuration + name: Read configuration uses: hashicorp/vault-action@v3 id: vault with: @@ -110,7 +110,7 @@ jobs: gpg_private_key: ${{ env.MAVEN_GPG_PRIVATE_KEY }} passphrase: MAVEN_GPG_PASSPHRASE - - name: Install Deps + name: Install deps run: make deps - name: Install package @@ -139,7 +139,7 @@ jobs: name: Release to maven central steps: - - name: Read Configuration + name: Read configuration uses: hashicorp/vault-action@v3 id: vault with: diff --git a/README.md b/README.md index 6195628..4a2aedb 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ Java GRPC bindings for aserto directory. Those are raw bindings, for a better de ### Building the project ```bash -mvn clean && mvn package +mvn clean package ``` If you want to install the package to your local maven repository in order to include it in other projects ```bash -mvn clean && mvn install +mvn clean install ```