From 72ce7dec8b3bd2c300460ecb5f8f6e29e459bf92 Mon Sep 17 00:00:00 2001 From: Travis Wyatt Date: Mon, 5 Apr 2021 22:25:36 -0700 Subject: [PATCH] Use 'publishMavenLocal' Gradle task (#39) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `installArchives` is deprecated. Long live `publishToMavenLocal`. 🙃 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faa701d..74fb229 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: -Psigning.keyId="${{ secrets.SIGNING_KEY_ID }}" -Psigning.password="${{ secrets.SIGNING_PASSWORD }}" -Psigning.secretKeyRingFile="$HOME/secring.gpg" - installArchives + publishToMavenLocal - name: Codecov uses: codecov/codecov-action@v1