Add build artifacts
This commit is contained in:
parent
2568a35aa5
commit
a6cf0084a0
1 changed files with 49 additions and 0 deletions
49
.github/workflows/build-artifacts.yml
vendored
Normal file
49
.github/workflows/build-artifacts.yml
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
name: Release
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches: main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout builds
|
||||
uses: actions/checkout@main
|
||||
|
||||
- name: Setup JDK 11
|
||||
uses: actions/setup-java@main
|
||||
with:
|
||||
java-version: 11
|
||||
distribution: adopt
|
||||
|
||||
- name: Setup Android SDK
|
||||
uses: android-actions/setup-android@7c5672355aaa8fde5f97a91aa9a99616d1ace6bc # v2.0.10
|
||||
|
||||
- name: Setup credentials
|
||||
run: |
|
||||
base64 -d <<< "$KEYSTORE_BASE64" > $HOME/keystore.jks
|
||||
env:
|
||||
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
|
||||
|
||||
- name: Build Artifact
|
||||
run: |
|
||||
chmod +x ./gradlew
|
||||
./gradlew app:assembleRelease \
|
||||
-Pandroid.injected.signing.store.file="$HOME/keystore.jks" \
|
||||
-Pandroid.injected.signing.store.password="$KEYSTORE_PASSWORD" \
|
||||
-Pandroid.injected.signing.key.alias="$KEY_ALIAS" \
|
||||
-Pandroid.injected.signing.key.password="$KEY_PASSWORD"
|
||||
|
||||
mv app/build/outputs/apk/release/app-release.apk
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
KEY_ALIAS: ${{ secrets.KEYSTORE_ALIAS }}
|
||||
KEY_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
||||
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
||||
|
||||
- uses: actions/upload-artifact@main
|
||||
with:
|
||||
name: VencordDev
|
||||
path: app/build/outputs/apk/release/app-release.apk
|
Loading…
Reference in a new issue