-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0cdb78
commit 099e455
Showing
1 changed file
with
48 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,63 +6,51 @@ on: | |
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Java JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
|
||
- name: Grant executable permissions | ||
run: chmod +x gradlew | ||
|
||
- name: Run Tests | ||
run: ./gradlew test | ||
|
||
- name: Build Project | ||
run: ./gradlew assemble | ||
|
||
- name: Build APK | ||
run: bash ./gradlew assembleDebug --stacktrace | ||
|
||
- name: Upload APK | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: apk | ||
path: app/build/outputs/apk/debug/app-debug.apk | ||
|
||
release: | ||
name: Release APK | ||
needs: build | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download APK from build | ||
uses: actions/download-artifact@v1 | ||
with: | ||
name: apk | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
|
||
- name: Upload Release APK | ||
id: upload_release_asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: apk/app-debug.apk | ||
asset_name: MensaApp.apk | ||
asset_content_type: application/zip | ||
apk: | ||
name: Generate APK | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: "11" | ||
- name: Set execution flag for gradlew | ||
run: chmod +x gradlew | ||
- name: Build APK | ||
run: bash ./gradlew assembleDebug --stacktrace | ||
- name: Upload APK | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: apk | ||
path: app/build/outputs/apk/debug/app-debug.apk | ||
|
||
release: | ||
name: Release APK | ||
needs: apk | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download APK from build | ||
uses: actions/download-artifact@v1 | ||
with: | ||
name: apk | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.run_number }} | ||
release_name: ${{ github.event.repository.name }} v${{ github.run_number }} | ||
- name: Upload Release APK | ||
id: upload_release_asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: apk/app-debug.apk | ||
asset_name: ${{ github.event.repository.name }}.apk | ||
asset_content_type: application/zip |