mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-26 16:51:50 +01:00
86 lines
2.2 KiB
YAML
86 lines
2.2 KiB
YAML
name: CI Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
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 artifacts and release
|
|
needs: check_wrapper
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Cancel previous runs
|
|
uses: styfle/cancel-workflow-action@0.5.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
|
|
- name: Checkout ${{ github.ref }}
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
path: master
|
|
fetch-depth: 0
|
|
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: |
|
|
cd master
|
|
mkdir -p ~/.gradle
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Download android.jar
|
|
run: |
|
|
cd master
|
|
curl https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar -o AndroidCompat/lib/android.jar
|
|
|
|
- name: Cache node_modules
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
**/react/node_modules
|
|
key: ${{ runner.os }}-${{ hashFiles('**/react/yarn.lock') }}
|
|
|
|
- name: Build and copy webUI, Build Jar
|
|
uses: eskatos/gradle-command-action@v1
|
|
with:
|
|
build-root-directory: master
|
|
wrapper-directory: master
|
|
arguments: :webUI:copyBuild :server:shadowJar --stacktrace
|
|
wrapper-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|
|
|
|
- name: make windows packages
|
|
run: |
|
|
cd master/scripts
|
|
./windows32-bundler.sh
|
|
./windows64-bundler.sh
|
|
|
|
- name: Upload Release
|
|
uses: xresloader/upload-to-github-release@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
file: "master/server/build/*.jar;master/server/build/*.zip"
|
|
tags: true
|
|
draft: true
|
|
verbose: true
|