diff --git a/.github/workflows/release-apk.yml b/.github/workflows/release-apk.yml index 0a7734e..7650d48 100644 --- a/.github/workflows/release-apk.yml +++ b/.github/workflows/release-apk.yml @@ -29,9 +29,9 @@ jobs: - name: Build with Gradle run: ./gradlew clean assembleRelease --info --warning-mode all - - name: Store android package - uses: ncipollo/release-action@v1.12.0 + uses: actions/upload-artifact@v4 with: - artifacts: "app/build/outputs/apk/pub/release/*.apk" - token: ${{ secrets.GITHUB_TOKEN }} - generateReleaseNotes: true + name: artifact + path: app/build/outputs/apk/pub/release/*.apk + if-no-files-found: warn + retention-days: 7