Skip to content

Commit

Permalink
chore github action for debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
tobexyz committed Jan 11, 2025
1 parent e4ff55e commit 119fe54
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy Jekyll & Doxygen GitHub Pages dependencies preinstalled
on:
# Runs on pushes targeting the default branch
push:
branches: [ "develop" ]
branches: [ "develop" , "feat/ci" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -28,6 +28,23 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- name: Change wrapper permissions
run: chmod +x ./yaacc/gradlew
- name: Run gradle build
run: ./yaacc/gradlew build
- name: Upload APK Debug - ${{ env.repository_name }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.date_today }} - YAACC - APK(s) debug generated
path: ./yaacc/build/outputs/apk/debug/

# build pages
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
Expand Down

0 comments on commit 119fe54

Please sign in to comment.