diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d9953ba..81ba7569 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,16 @@ jobs: distribution: temurin java-version: 17 + - name: Cache Gradle files + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + gradle-${{ runner.os }}- + - name: Grant execute permission for Gradlew run: chmod +x ./gradlew @@ -72,6 +82,6 @@ jobs: - name: Create GitHub Release uses: softprops/action-gh-release@v2 with: - files: app-release.apk + files: bitchat.apk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}