Add nightly-release workflow #114
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: CI | |
on: | |
push: | |
branches: | |
- trunk | |
paths-ignore: | |
- '.idea/**' | |
- '.gitattributes' | |
- '.github/**.json' | |
- '.gitignore' | |
- '**.md' | |
- 'LICENSE' | |
- 'NOTICE' | |
pull_request: | |
branches: | |
- trunk | |
paths-ignore: | |
- '.idea/**' | |
- '.gitattributes' | |
- '.github/**.json' | |
- '.gitignore' | |
- '**.md' | |
- 'LICENSE' | |
- 'NOTICE' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw== | |
gradle-home-cache-cleanup: true | |
- run: ./gradlew assembleLawnWithQuickstepRelease | |
- uses: actions/upload-artifact@v4 | |
if: github.ref == 'refs/heads/trunk' && github.event_name == 'push' | |
with: | |
name: Release APK | |
path: | | |
build/outputs/apk/lawnWithQuickstep/release/*.apk | |
build/outputs/mapping/lawnWithQuickstepRelease/mapping.txt | |
check-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
- uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-home-cache-cleanup: true | |
- run: ./gradlew spotlessCheck | |
nightly-release: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'Goooler' && github.ref == 'refs/heads/trunk' && github.event_name == 'push' | |
needs: build | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
# Note the # and () symbols are not supported in GitHub Release filenames, even manually | |
- name: Export APK_NAME for later use | |
run: echo "APK_NAME=Lawnchair.Debug.${{ github.ref_name }}.Nightly-CI_${{ github.run_number }}-$(echo ${{ github.sha }} | cut -c1-7).apk" >> $GITHUB_ENV | |
- name: Delete release if exist then create release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release view "nightly" && gh release delete "nightly" -y --cleanup-tag | |
gh release create "nightly" "./Release APK/lawnWithQuickstep/release/"*.apk "./Release APK/lawnWithQuickstep/release/"mapping.txt -p -t "Lawnchair Nightly" --generate-notes |