Optimise Lens path #91
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
name: Build debug APK | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: | |
- '*-dev' | |
paths-ignore: | |
- '.idea/**' | |
- '.gitattributes' | |
- '.github/**.json' | |
- '.gitignore' | |
- '.gitmodules' | |
- '**.md' | |
- 'LICENSE' | |
- 'NOTICE' | |
pull_request: | |
paths-ignore: | |
- '.idea/**' | |
- '.gitattributes' | |
- '.github/**.json' | |
- '.gitignore' | |
- '.gitmodules' | |
- '**.md' | |
- 'LICENSE' | |
- 'NOTICE' | |
jobs: | |
build-debug-apk: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Write sign info | |
if: github.repository == 'LawnchairLauncher/lawnchair' | |
run: | | |
if [ ! -z "${{ secrets.KEYSTORE }}" ]; then | |
echo storePassword='${{ secrets.KEYSTORE_PASSWORD }}' >> keystore.properties | |
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> keystore.properties | |
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> keystore.properties | |
echo storeFile='${{ github.workspace }}/key.jks' >> keystore.properties | |
echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks | |
fi | |
- name: Build debug APK | |
run: ./gradlew assembleLawnWithQuickstepDebug | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Debug APK | |
path: build/outputs/apk/lawnWithQuickstep/debug/*.apk | |
send-notifications: | |
runs-on: ubuntu-latest | |
if: github.repository == 'LawnchairLauncher/lawnchair' | |
needs: build-debug-apk | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install gitpython requests | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: Debug APK | |
path: artifacts/debug-apk | |
- name: Send notifications | |
run: python ci.py | |
env: | |
GITHUB_EVENT_BEFORE: ${{ github.event.before }} | |
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_CI_BOT_TOKEN }} | |
TELEGRAM_CI_CHANNEL_ID: ${{ secrets.TELEGRAM_CI_CHANNEL_ID }} | |
TELEGRAM_TEAM_GROUP_ID: ${{ secrets.NOTIFY_CHANNEL_ID }} | |
ARTIFACT_DIRECTORY: artifacts/debug-apk | |
GITHUB_REF: ${{ github.ref }} | |
ACTION: internal_notifications | |
crowdin-auto-merge: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'lawnchair-bot' && github.event.pull_request.title == 'New Crowdin translations by Github Action' | |
needs: build-debug-apk | |
steps: | |
- env: | |
GH_TOKEN: ${{ secrets.LAWNCHAIR_BOT_TOKEN }} | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
run: | | |
gh pr comment $PR_URL --body "No issues found, auto-merging the Crowdin pull request." | |
gh pr merge $PR_URL --auto --squash --delete-branch |