Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 7db90111 authored by uazo's avatar uazo Committed by GitHub
Browse files

Fix building keystore

parent 970188f2
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -216,8 +216,11 @@ jobs:
          sudo chmod o-rxw /run/user/1000/

          # prepare keystore
          echo "${{ secrets.KEYSTORE }}" > ~/cromite.keystore.asc
          gpg -d --passphrase "${{ secrets.KEYSTORE_PASSPHRASE }}" --batch ~/cromite.keystore.asc > ~/cromite.keystore
          echo "::group::-------- prepare keystore"
          cd $WORKSPACE
          echo "${{ secrets.KEYSTORE }}" > cromite.keystore.asc
          gpg -d --passphrase "${{ secrets.KEYSTORE_PASSPHRASE }}" --batch cromite.keystore.asc > cromite.keystore
          echo "::endgroup::"
          
      - name: Build Bromite Android arm64
        if: ${{ (github.event.inputs.target_os == 'android' || github.event.inputs.target_os == 'all') && (github.event.inputs.build == 'arm64' || github.event.inputs.build == 'all') }}