From 4a220c2304b3ec047cedf167c543cc24d9547d85 Mon Sep 17 00:00:00 2001 From: Seva Safris Date: Sun, 17 Sep 2023 11:31:25 +0700 Subject: [PATCH] Update build.yml re ${coverallsRepoToken} --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb2e5b9..6f734ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: - name: Build env: GPG: ${{ secrets.GPG }} - REPO_TOKEN: ${{ secrets.REPO_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} @@ -52,7 +52,7 @@ jobs: [ "${{ github.ref }}" = "refs/heads/master" ] && [ "${{ github.head_ref }}" = "" ]; then echo $GPG | base64 -d | gpg --import --no-tty --batch --yes &> /dev/null && - mvn -e -U -B -s settings.xml -DskipRTests -DrepoToken=$REPO_TOKEN deploy -P javadoc,report,deploy; + mvn -e -U -B -s settings.xml -DskipRTests -DcoverallsRepoToken=$COVERALLS_REPO_TOKEN deploy -P javadoc,report,deploy; else mvn -e -U -B -s settings.xml -DskipRTests install; fi \ No newline at end of file