diff --git a/.github/workflows/android-release-ci.yml b/.github/workflows/android-release.yml similarity index 86% rename from .github/workflows/android-release-ci.yml rename to .github/workflows/android-release.yml index 5790b17..64e2083 100644 --- a/.github/workflows/android-release-ci.yml +++ b/.github/workflows/android-release.yml @@ -5,6 +5,9 @@ on: tags: - "v*" +permissions: + contents: write + jobs: release: runs-on: ubuntu-latest @@ -30,11 +33,14 @@ jobs: - name: Build Release APK run: ./gradlew assembleRelease + - name: List APK outputs + run: ls -R app/build/outputs/apk + - name: Create GitHub Release and Upload APK uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref_name }} name: Release ${{ github.ref_name }} - files: app/build/outputs/apk/release/app-release.apk + files: app/release/app-release.apk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.idea/deviceManager.xml b/.idea/deviceManager.xml new file mode 100644 index 0000000..91f9558 --- /dev/null +++ b/.idea/deviceManager.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/.idea/markdown.xml b/.idea/markdown.xml new file mode 100644 index 0000000..c61ea33 --- /dev/null +++ b/.idea/markdown.xml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore index 607adf0..10647c3 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1,2 +1,3 @@ /build +.idea /app/google-services.json \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4e4b63c..e0eaa6a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -16,8 +16,8 @@ android { applicationId = "com.delecrode.devhub" minSdk = 30 targetSdk = 36 - versionCode = 2 - versionName = "1.0.2" + versionCode = 6 + versionName = "1.0.6" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }