From 7d681043b8507fd358ef85d5b760db16dbc57831 Mon Sep 17 00:00:00 2001 From: Ivan Valdes Date: Fri, 29 Sep 2023 17:10:34 -0700 Subject: [PATCH] build: use hub action --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 622ffc8..ffebf44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,8 +22,8 @@ jobs: run: ./gradlew assembleRelease - name: Set current directory as a safe repository run: git config --global --add safe.directory /github/workspace - - name: Releasing using Hub - uses: r0user/release-apk@main + - uses: geertvdc/setup-hub@master + - name: Release using hub + run: hub release create -a ./app/build/outputs/apk/release/**.apk -m "v${GITHUB_REF##*/}" ${GITHUB_REF##*/} env: GITHUB_TOKEN: ${{ secrets.TOKEN }} - APP_FOLDER: app