From f7779b604dea4deb07954dd8720eacdf333bd59c Mon Sep 17 00:00:00 2001 From: Julian Date: Wed, 15 Mar 2023 13:02:49 +0100 Subject: [PATCH] fix secret name --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e8cca2..07e2ceb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,14 +18,14 @@ jobs: - name: Build with Gradle run: ./gradlew build -Prelease=${{ github.ref_name }} --info env: - EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_TOKEN }} + EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_KEY }} - name: Publish to Maven Central env: ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.EXAROTON_GPG_SIGNING_KEY }} ORG_GRADLE_PROJECT_SIGNING_PASSPHRASE: ${{ secrets.EXAROTON_GPG_SIGNING_PASSPHRASE }} ORG_GRADLE_PROJECT_OSSRH_USERNAME: ${{ secrets.SONATYPE_OSSRH_USERNAME }} ORG_GRADLE_PROJECT_OSSRH_PASSWORD: ${{ secrets.SONATYPE_OSSRH_PASSWORD }} - EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_TOKEN }} + EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_KEY }} run: ./gradlew publish -Prelease=${{ github.ref_name }} - name: Create Release uses: softprops/action-gh-release@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb13979..e67187b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,4 +17,4 @@ jobs: - name: Build with Gradle run: ./gradlew build --info env: - EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_TOKEN }} \ No newline at end of file + EXAROTON_API_TOKEN: ${{ secrets.EXAROTON_API_KEY }} \ No newline at end of file