mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-27 01:01:48 +01:00
134 lines
4.0 KiB
YAML
134 lines
4.0 KiB
YAML
name: CI build
|
|
|
|
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 artifacts and deploy preview
|
|
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.9.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
|
|
- name: Checkout master branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: master
|
|
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
|
|
env:
|
|
TachideskBuildType: "Preview"
|
|
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: Mock Build and copy webUI, Build Jar
|
|
# run: |
|
|
# mkdir -p master/server/build
|
|
# cd master/server/build
|
|
# echo "test" > Tachidesk-v0.3.8-r583.jar
|
|
|
|
- name: Generate Tag Name
|
|
id: GenTagName
|
|
run: |
|
|
cd master/server/build
|
|
genTag=$(ls *.jar | sed -e's/Tachidesk-\|.jar//g')
|
|
echo "$genTag"
|
|
echo "::set-output name=value::$genTag"
|
|
|
|
- name: make windows packages
|
|
run: |
|
|
cd master/scripts
|
|
./windows-bundler.sh win32
|
|
./windows-bundler.sh win64
|
|
|
|
# - name: Mock make windows packages
|
|
# run: |
|
|
# cd master/server/build
|
|
# echo test > Tachidesk-v0.3.8-r580-win32.zip
|
|
|
|
- name: Checkout preview branch
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: 'Suwayomi/Tachidesk-preview'
|
|
ref: main
|
|
path: preview
|
|
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
|
|
|
|
- name: Create Tag
|
|
run: |
|
|
TAG="${{ steps.GenTagName.outputs.value }}"
|
|
echo "tag: $TAG"
|
|
cd preview
|
|
echo "{ \"latest\": \"$TAG\" }" > index.json
|
|
git add index.json
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
git commit -m "Updated to $TAG"
|
|
git push origin main
|
|
|
|
git tag $TAG
|
|
git push origin $TAG
|
|
|
|
- name: Upload Preview Release
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
|
|
artifacts: "master/server/build/*.jar,master/server/build/*.zip"
|
|
owner: "Suwayomi"
|
|
repo: "Tachidesk-preview"
|
|
tag: ${{ steps.GenTagName.outputs.value }}
|
|
|
|
- name: Run Docker build workflow
|
|
run: |
|
|
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${{ secrets.DEPLOY_PREVIEW_TOKEN }}" -d '{"ref":"main", "inputs":{"tachidesk_release_type": "preview"}}' https://api.github.com/repos/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml/dispatches
|