Bluesky app fork with some witchin' additions 💫

Build bitchsky workflow change

Changing android build artifact/release file to include the bitchsky apk
version number!

+7 -3
+7 -3
.github/workflows/bitchsky-build.yml .github/workflows/build-bitchsky.yml
··· 2 2 on: workflow_dispatch 3 3 4 4 jobs: 5 - bitchsky-build-android: 5 + build-bitchsky-android: 6 6 name: Build Bitchsky for Android 7 7 runs-on: ubuntu-latest 8 8 steps: ··· 36 36 - name: Build 37 37 run: just dist-build-android-gradle 38 38 39 + - name: Rename APK 40 + run: | 41 + mv android/app/build/outputs/apk/release/app-release.apk android/app/build/outputs/apk/release/bitchsky-v${{ github.run_number }}.apk 42 + 39 43 - name: Upload artifact 40 44 uses: actions/upload-artifact@v4 41 45 with: 42 46 name: android 43 - path: android/app/build/outputs/apk/release/app-release.apk 47 + path: android/app/build/outputs/apk/release/bitchsky-v${{ github.run_number }}.apk 44 48 45 49 - name: Publish release 46 50 uses: softprops/action-gh-release@v2 ··· 48 52 with: 49 53 name: Bitchsky v${{ github.run_number }} 50 54 tag_name: bitchsky-v${{ github.run_number }} 51 - files: android/app/build/outputs/apk/release/app-release.apk 55 + files: android/app/build/outputs/apk/release/bitchsky-v${{ github.run_number }}.apk