diff --git a/.github/workflows/build-recipes.yml b/.github/workflows/build-recipes.yml index e0be9fc6..c281b590 100644 --- a/.github/workflows/build-recipes.yml +++ b/.github/workflows/build-recipes.yml @@ -31,4 +31,4 @@ jobs: gradle-version: current - name: Gradle Build and Test - run: -p recipes --build-cache build test e2eTest + run: gradle -p recipes --build-cache build test e2eTest diff --git a/.github/workflows/gradle-publish-release.yml b/.github/workflows/gradle-publish-release.yml index c4fe6167..540ec3cc 100644 --- a/.github/workflows/gradle-publish-release.yml +++ b/.github/workflows/gradle-publish-release.yml @@ -27,7 +27,7 @@ jobs: gradle-version: current - name: Gradle Build and Test - run: --build-cache publish + run: gradle publish --parallel env: gpg_private_key: ${{ secrets.gpg_private_key }} gpg_passphrase: ${{ secrets.gpg_passphrase }} diff --git a/.github/workflows/gradle-publish-snapshot.yml b/.github/workflows/gradle-publish-snapshot.yml index 095c34a9..a5cbe733 100644 --- a/.github/workflows/gradle-publish-snapshot.yml +++ b/.github/workflows/gradle-publish-snapshot.yml @@ -36,7 +36,7 @@ jobs: gradle-version: current - name: Publish to Maven Repository - run: gradle --build-cache publish --parallel + run: gradle publish --parallel env: gpg_private_key: ${{ secrets.gpg_private_key }} gpg_passphrase: ${{ secrets.gpg_passphrase }}