2020-11-13 00:22:02 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check_wrapper:
|
|
|
|
name: Validate Gradle Wrapper
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build extension repo
|
|
|
|
needs: check_wrapper
|
|
|
|
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Cancel previous runs
|
|
|
|
uses: styfle/cancel-workflow-action@0.5.0
|
|
|
|
with:
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
|
|
|
|
- name: Checkout master branch
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
path: master
|
|
|
|
|
2021-01-13 21:45:20 +00:00
|
|
|
- name: Set up JDK 1.8
|
2020-11-13 00:22:02 +00:00
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
2021-01-13 21:45:20 +00:00
|
|
|
java-version: 1.8
|
2020-11-13 00:22:02 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
mkdir -p ~/.gradle
|
|
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2021-02-08 14:08:45 +00:00
|
|
|
- name: Generate sources from the multi-source library
|
2021-02-06 22:32:04 +00:00
|
|
|
uses: eskatos/gradle-command-action@v1
|
2021-02-13 00:16:06 +00:00
|
|
|
env:
|
|
|
|
CI_PUSH: "true"
|
2021-02-06 22:32:04 +00:00
|
|
|
with:
|
2021-02-08 17:00:19 +00:00
|
|
|
build-root-directory: master
|
|
|
|
wrapper-directory: master
|
2021-02-08 14:08:45 +00:00
|
|
|
arguments: :multisrc:multisrcGenerators
|
2021-02-06 22:32:04 +00:00
|
|
|
wrapper-cache-enabled: true
|
|
|
|
dependencies-cache-enabled: true
|
|
|
|
configuration-cache-enabled: true
|
|
|
|
|
2020-11-13 00:22:02 +00:00
|
|
|
- name: Build extensions
|
|
|
|
uses: eskatos/gradle-command-action@v1
|
2021-02-13 00:16:06 +00:00
|
|
|
env:
|
|
|
|
CI_PUSH: "true"
|
2020-11-13 00:22:02 +00:00
|
|
|
with:
|
|
|
|
build-root-directory: master
|
|
|
|
wrapper-directory: master
|
|
|
|
arguments: assembleRelease
|
|
|
|
wrapper-cache-enabled: true
|
|
|
|
dependencies-cache-enabled: true
|
|
|
|
configuration-cache-enabled: true
|
|
|
|
|
|
|
|
- name: Sign APKs
|
2021-02-01 22:51:54 +00:00
|
|
|
if: github.repository == 'tachiyomiorg/tachiyomi-extensions'
|
2020-11-13 00:22:02 +00:00
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
./.github/scripts/sign-apks.sh \
|
|
|
|
${{ secrets.SIGNING_KEY }} \
|
|
|
|
${{ secrets.ALIAS }} \
|
|
|
|
${{ secrets.KEY_STORE_PASSWORD }} \
|
|
|
|
${{ secrets.KEY_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Create repo artifacts
|
2021-02-01 22:51:54 +00:00
|
|
|
if: github.repository == 'tachiyomiorg/tachiyomi-extensions'
|
2020-11-13 00:22:02 +00:00
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
./.github/scripts/create-repo.sh
|
|
|
|
|
|
|
|
- name: Checkout repo branch
|
2021-02-01 22:51:54 +00:00
|
|
|
if: github.repository == 'tachiyomiorg/tachiyomi-extensions'
|
2020-11-13 00:22:02 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: repo
|
|
|
|
path: repo
|
|
|
|
|
|
|
|
- name: Deploy repo
|
2021-02-01 22:51:54 +00:00
|
|
|
if: github.repository == 'tachiyomiorg/tachiyomi-extensions'
|
2020-11-13 00:22:02 +00:00
|
|
|
run: |
|
|
|
|
cd repo
|
|
|
|
../master/.github/scripts/commit-repo.sh
|