diff --git a/.github/workflows/flutter.yml b/.github/workflows/flutter.yml index 86daa6e..5d70c3a 100644 --- a/.github/workflows/flutter.yml +++ b/.github/workflows/flutter.yml @@ -10,18 +10,19 @@ jobs: name: Build Android runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Decode Keystore and Create key.properties env: BASE64_STORE: ${{ secrets.PLAY_UPLOAD_KEYSTORE }} PROPERTIES_PATH: ${{ github.workspace }}/android/key.properties STORE_PATH: ${{ github.workspace }}/android/keystore.jks run: | + ls -la ${{github.workspace}} echo keyPassword=\${{secrets.PLAY_UPLOAD_KEY_PASSWORD}} > ${{env.PROPERTIES_PATH}} echo storePassword=\${{secrets.PLAY_UPLOAD_STORE_PASSWORD}} >> ${{env.PROPERTIES_PATH}} echo keyAlias=\${{secrets.PLAY_KEY_ALIAS}} >> ${{env.PROPERTIES_PATH}} echo storeFile=\${{env.STORE_PATH}} >> ${{env.PROPERTIES_PATH}} echo "${{env.BASE64_STORE}}" | base64 --decode > ${{env.STORE_PATH}} - - uses: actions/checkout@v3 - uses: actions/setup-java@v2 with: distribution: 'zulu'