-
Notifications
You must be signed in to change notification settings - Fork 274
Create android.yml #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Build Android APK | ||
| on: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
| - name: Build Debug APK | ||
| working-directory: apps/android | ||
| run: | | ||
| chmod +x gradlew | ||
| ./gradlew :app:assembleDebug | ||
| - name: Upload APK | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: mural-android-app | ||
| path: apps/android/app/build/outputs/apk/debug/app-debug.apk | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Build Android APK | ||
| on: | ||
| workflow_dispatch: | ||
|
Comment on lines
+1
to
+3
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Move the workflow into GitHub Actions discovers workflow files only from 🤖 Prompt for AI Agents |
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
| - name: Build Debug APK | ||
| working-directory: apps/android | ||
| run: | | ||
| chmod +x gradlew | ||
| ./gradlew :app:assembleDebug | ||
| - name: Upload APK | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: mural-android-app | ||
| path: apps/android/app/build/outputs/apk/debug/app-debug.apk | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Move the workflow into
.github/workflows.GitHub Actions only discovers workflow files under
.github/workflows. This file is under.githubworkflows, so GitHub will not register theworkflow_dispatchtrigger or run the APK build. Move it to.github/workflows/android.yml.🤖 Prompt for AI Agents