From df10c5476757adacc584148771dd50fed0a5f2c2 Mon Sep 17 00:00:00 2001 From: tueem Date: Thu, 14 Nov 2024 13:54:12 +0100 Subject: [PATCH] fix variable usage --- .gitea/workflows/gradle-publish.yaml | 2 +- .gitea/workflows/gradle-test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/gradle-publish.yaml b/.gitea/workflows/gradle-publish.yaml index 9a2d921..f6d4da8 100644 --- a/.gitea/workflows/gradle-publish.yaml +++ b/.gitea/workflows/gradle-publish.yaml @@ -36,5 +36,5 @@ jobs: - name: Publish env: - GITEA_TOKEN: {{ secrets.PUBLISH_PACKAGE_TOKEN }} + GITEA_TOKEN: ${{ secrets.PUBLISH_PACKAGE_TOKEN }} run: chmod +x gradlew; ./gradlew publishAllPublicationsToGiteaRepository \ No newline at end of file diff --git a/.gitea/workflows/gradle-test.yaml b/.gitea/workflows/gradle-test.yaml index bdadc11..ad08536 100644 --- a/.gitea/workflows/gradle-test.yaml +++ b/.gitea/workflows/gradle-test.yaml @@ -35,7 +35,7 @@ jobs: - name: Test env: - DISCORD_TEST_TOKEN: {{ secrets.DISCORD_TOKEN }} + DISCORD_TEST_TOKEN: ${{ secrets.DISCORD_TOKEN }} run: chmod +x gradlew; ./gradlew test - name: Publish Test Results