Skip to content

ci: split out nightly build ci configuration #2

ci: split out nightly build ci configuration

ci: split out nightly build ci configuration #2

Workflow file for this run

name: Nightly

Check failure on line 1 in .github/workflows/nightly-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly-ci.yml

Invalid workflow file

invalid `cron` attribute "0 8 9 * * * *"
on:
schedule:
- cron: '0 8 9 * * * *' # UTC 3:00 daily
env:
CI_NAME: Nightly CI
jobs:
build:
if: ${{ github.repository == 'WhiredPlanck/trime-new' && github.ref == 'refs/heads/nightly-build-pass2' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 21
# will restore cache of dependencies and wrappers
cache: 'gradle'
- name: Calculate JNI cache hash
id: cache-hash
run: |
./gradlew :app:calculateNativeCacheHash
- name: Fetch JNI cache
uses: actions/cache@v3
id: jni-cache
with:
path: "app/prebuilt"
key: ${{ runner.os }}-trime-jni-release-${{ steps.cache-hash.outputs.native-cache-hash }}
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Setup keystore
run: |
echo ${{ secrets.SIGNING_KEY }} | base64 --decode | cat >> $(pwd)/signingkey.jks
cat << EOF > keystore.properties
storeFile=$(pwd)/signingkey.jks
storePassword=${{ secrets.KEY_STORE_PASSWORD }}
keyAlias=${{ secrets.ALIAS }}
keyPassword=${{ secrets.KEY_PASSWORD }}
EOF
- name: Build Trime
run: make release
- name: Add JNI cache
if: ${{ !steps.jni-cache.outputs.cache-hit }}
run: cp -R app/build/intermediates/stripped_native_libs/release/out/lib app/prebuilt
- name: Create Nightly release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
prerelease: true
artifacts: "app/build/outputs/apk/release/*.apk"
removeArtifacts: true
name: "Nightly Build"
token: ${{ secrets.GITHUB_TOKEN }}