Skip to content

Commit

Permalink
Fix Dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillt committed Jan 22, 2024
1 parent c8a5468 commit e791d9d
Showing 1 changed file with 39 additions and 11 deletions.
50 changes: 39 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
name: Build the app

on: [push]
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
ACRA_LOGIN: ${{ secrets.ACRARIUM_BASIC_AUTH_LOGIN }}
ACRA_PASS: ${{ secrets.ACRARIUM_BASIC_AUTH_PASSWORD }}
ACRA_URI: ${{ secrets.ACRARIUM_URI }}
BRANCH_NAME: ${{ github.ref_name }}


jobs:
build:
check:
if: ${{ startsWith(github.actor, 'dependabot') }}
environment: Development
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: gradle

- name: Validate Gradle wrapper
uses: gradle/[email protected]

- name: Build debug APK
run: ./gradlew assembleDebug

build:
if: ${{ ! startsWith(github.actor, 'dependabot') }}
environment: Development
env:
ACRA_LOGIN: ${{ secrets.ACRARIUM_BASIC_AUTH_LOGIN }}
ACRA_PASS: ${{ secrets.ACRARIUM_BASIC_AUTH_PASSWORD }}
ACRA_URI: ${{ secrets.ACRARIUM_URI }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Expand All @@ -26,24 +54,24 @@ jobs:
- name: Decrypt the keystore for signing
run: |
echo "${{ secrets.KEYSTORE_ENCRYPTED }}" > keystore.asc
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch keystore.asc > keystore.jks
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch keystore.asc > keystore.jks
- name: Build Release APK
- name: Build release APK
run: ./gradlew assembleRelease

- name: Upload Release arm64-v8a APK
- name: Upload release arm64-v8a APK
uses: actions/upload-artifact@v3
with:
name: release-arm64-v8a-apk
path: ./app/build/outputs/apk/release/app-arm64-v8a-release.apk

- name: Upload Release armeabi-v7a APK
- name: Upload release armeabi-v7a APK
uses: actions/upload-artifact@v3
with:
name: release-armeabi-v7a-apk
path: ./app/build/outputs/apk/release/app-armeabi-v7a-release.apk

- name: Upload Release universal APK
- name: Upload release universal APK
uses: actions/upload-artifact@v3
with:
name: release-universal-apk
Expand Down

0 comments on commit e791d9d

Please sign in to comment.