chore: vendor capcom6/android-sms-gateway upstream (Apache-2.0 baseline fork)

This commit is contained in:
2026-04-22 21:35:59 +01:00
commit 71078fda14
349 changed files with 26311 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
name: Release
on:
release:
types: [published]
jobs:
build:
strategy:
matrix:
build-type: [release, insecure]
name: Build ${{ matrix.build-type }}
uses: ./.github/workflows/build-apk.yml
with:
version-name: ${{ github.ref_name }}
build-type: ${{ matrix.build-type }}
secrets:
google-services-json: ${{ secrets.GOOGLE_SERVICES_JSON }}
signing-key-store-base64: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
signing-key-alias: ${{ secrets.SIGNING_KEY_ALIAS }}
signing-key-password: ${{ secrets.SIGNING_KEY_PASSWORD }}
signing-store-password: ${{ secrets.SIGNING_STORE_PASSWORD }}
release:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/download-artifact@v4
with:
name: release-artifacts
- uses: actions/download-artifact@v4
with:
name: insecure-artifacts
- name: Create Github Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
prerelease: true
files: |
./apk/release/app-release.apk
./bundle/release/app-release.aab
./apk/insecure/app-insecure.apk
./bundle/insecure/app-insecure.aab