diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 97ecc56..4f18864 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,11 +51,11 @@ jobs: uses: actions/upload-artifact@v4 with: name: amuzic - path: ./app/build/outputs/aab/release/*.aab + path: ./app/build/outputs/bundle/release/*.aab - name: Create Release run: | gh release create ${{ github.ref_name }} --title "Amuzic $(echo ${{ github.ref_name }} | rev | cut -d 'v' -f 1 | rev)" --generate-notes - gh release upload ${{ github.ref_name }} ./app/build/outputs/apk/release/amuzic.apk ./app/build/outputs/aab/release/amuzic.aab + gh release upload ${{ github.ref_name }} ./app/build/outputs/apk/release/amuzic.apk ./app/build/outputs/bundle/release/amuzic.aab env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index f7b6eec..7df898f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ local.properties *.tab *.tab.values.at misc.xml +*.jks diff --git a/app/.gitignore b/app/.gitignore index 42afabf..afaf868 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1 +1,2 @@ -/build \ No newline at end of file +/build +*.jks diff --git a/app/build.gradle b/app/build.gradle index d8eecb8..566973a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,9 +30,9 @@ android { signingConfigs { release { storeFile file("amuzic_release_keystore.jks") - storePassword System.getenv("SIGNING_KEYSTORE_PASSWORD") - keyAlias System.getenv("KEY_ALIAS") - keyPassword System.getenv("KEY_PASSWORD") + storePassword "amuzic_24" //System.getenv("SIGNING_KEYSTORE_PASSWORD") + keyAlias "amuzic_key" //System.getenv("KEY_ALIAS") + keyPassword "amuzic_2410" //System.getenv("KEY_PASSWORD") v1SigningEnabled true v2SigningEnabled true }