diff --git a/.github/workflows/publish-to-play-store-beta.yml b/.github/workflows/publish-to-play-store-beta.yml index b25555c..505238f 100644 --- a/.github/workflows/publish-to-play-store-beta.yml +++ b/.github/workflows/publish-to-play-store-beta.yml @@ -21,6 +21,10 @@ jobs: java-version: '17' distribution: 'temurin' + - name: Create secrets.properties + run: | + echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties + - name: Build with Gradle id: build run: ./gradlew build diff --git a/.github/workflows/publish-to-play-store.yml b/.github/workflows/publish-to-play-store.yml index b447523..471cfb9 100644 --- a/.github/workflows/publish-to-play-store.yml +++ b/.github/workflows/publish-to-play-store.yml @@ -21,6 +21,10 @@ jobs: java-version: '17' distribution: 'temurin' + - name: Create secrets.properties + run: | + echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties + - name: Build with Gradle id: build run: ./gradlew build