From ad54efe51dcf0c9e1d8f6e2f886150bd20d677d5 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 18 Aug 2025 00:13:27 -0700 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 7dd400c..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: build-twa -on: - push: - branches: [ main ] -jobs: - build: - runs-on: ubuntu-latest - env: - KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }} - KEY_PASS: ${{ secrets.KEY_PASS }} - KEY_ALIAS: ${{ secrets.KEY_ALIAS }} - steps: - - uses: actions/checkout@v4 - - name: Setup Java - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: 11 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install Bubblewrap - run: npm install -g @bubblewrap/cli - - name: Decode keystore - run: | - echo "${{ secrets.JKS_BASE64 }}" | base64 --decode > sune-keystore.jks - chmod 600 sune-keystore.jks - - name: Sanity show SHA256 - run: keytool -list -v -keystore sune-keystore.jks -alias "${{ secrets.KEY_ALIAS }}" -storepass "${{ secrets.KEYSTORE_PASS }}" | grep -i "SHA256" - - name: Bubblewrap build & sign - run: | - bubblewrap build --keystorePath=sune-keystore.jks --keystoreAlias="${KEY_ALIAS}" --keystorePassword="${KEYSTORE_PASS}" --keyPassword="${KEY_PASS}" - - name: Upload APK - uses: actions/upload-artifact@v4 - with: - name: sune-apk - path: android-build-output/*.apk || app/build/outputs/apk/release/*.apk