diff --git a/.gitea/workflows/apk.yml b/.gitea/workflows/apk.yml index 4d09cee..0e118ea 100644 --- a/.gitea/workflows/apk.yml +++ b/.gitea/workflows/apk.yml @@ -6,20 +6,16 @@ jobs: runs-on: ubuntu-latest container: mingc/android-build-box steps: - - uses: actions/setup-go@v5 - with: - go-version: '>=1.20.1' - uses: actions/checkout@v4 - run: curl -sSL -u "$USERNAME:$PASSWORD" -o ShareWithTitle/$STORE_FILE https://cloud.crystalyx.net/remote.php/dav/files/$USERNAME/Bordel/$STORE_FILE - run: sh gradlew lint build bundle assemble --no-daemon - - uses: https://gitea.com/actions/release-action@main - if: startsWith(gitea.ref, 'refs/tags') + - uses: akkuman/gitea-release-action@v1 + if: gitea.ref_type == 'tag' with: files: | ShareWithTitle/build/outputs/apk/debug/ShareWithTitle-debug.apk ShareWithTitle/build/outputs/apk/release/ShareWithTitle-release.apk ShareWithTitle/build/outputs/bundle/release/ShareWithTitle-release.aab - api_key: ${{ secrets.RELEASE_TOKEN }} env: USERNAME: ${{ secrets.USERNAME }} PASSWORD: ${{ secrets.PASSWORD }}