diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62fd24e9..8743ebd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - name: 'Get key from Github Secrets' run: | mkdir -p src/main/resources/static - echo "${{ secrets.APPLE_KEY }}" | base64 -d > ./src/main/resources/static/"${{ secrets.APPLE_KEY_NAME }}" + echo ${{ secrets.APPLE_KEY }} | base64 -d > ./src/main/resources/static/${{ secrets.APPLE_KEY_NAME }} - name: Build with Gradle run: ./gradlew build