Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
Based off zmx's workflow for 1.9 GDPS.
  • Loading branch information
matcool authored Sep 16, 2023
1 parent 38bdecc commit 7781a9a
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/buld.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build launcher

on:
workflow_dispatch:
push:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Java JDK
uses: actions/[email protected]
with:
java-version: 19
distribution: temurin
cache: gradle

- name: Generate keystore file
run: echo ${{secrets.KEYSTORE_FILE}} | base64 -d > ~/release.keystore

- name: Generate keystore properties
run: |
touch ${{github.workspace}}/app/signing.properties
echo "storeFile=$HOME/release.keystore
storePassword=${{secrets.KEYSTORE_PASSWORD}}
keyAlias=${{secrets.KEY_ALIAS}}
keyPassword=${{secrets.KEY_PASSWORD}}" > ${{github.workspace}}/app/signing.properties
- name: Fix gradle permissions
run: chmod +x ./gradlew

- name: Build project
run: ./gradlew assembleLauncherRelease assembleLauncherDevelopment

- name: Upload development build
uses: actions/upload-artifact@v3
with:
name: geode-launcher-${{github.sha}}.apk
path: ${{github.workspace}}/app/build/outputs/apk/release/app-release

0 comments on commit 7781a9a

Please sign in to comment.