Skip to content

Instantly share code, notes, and snippets.

View amosayomide05's full-sized avatar
🤩
Watching Anime 🙃

Amos Ayomide amosayomide05

🤩
Watching Anime 🙃
View GitHub Profile
@amosayomide05
amosayomide05 / main.yml
Last active January 31, 2024 02:19
Run your Android Java Project with Github Action (October 2022)
name: Build My App
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Make gradlew executable
run: chmod +x ./gradlew