2021-02-13 11:02:59 +01:00
|
|
|
name: Publish
|
2021-01-21 11:45:05 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-13 11:02:59 +01:00
|
|
|
tags:
|
|
|
|
- 'v*'
|
2021-01-21 11:45:05 +01:00
|
|
|
|
|
|
|
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 FatJar
|
|
|
|
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 master branch
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
path: master
|
2021-01-21 13:31:55 +01:00
|
|
|
fetch-depth: 0
|
2021-01-21 11:45:05 +01:00
|
|
|
|
|
|
|
- name: Set up JDK 1.8
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.8
|
|
|
|
|
2021-01-21 20:09:22 +01:00
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
mkdir -p ~/.gradle
|
|
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2021-02-13 12:48:57 +01:00
|
|
|
- name: Download android.jar
|
2021-01-21 11:53:22 +01:00
|
|
|
run: |
|
|
|
|
cd master
|
2021-02-13 12:48:57 +01:00
|
|
|
curl https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar -o AndroidCompat/lib/android.jar
|
|
|
|
|
2021-02-13 13:00:15 +01:00
|
|
|
- name: Cache node_modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
**/react/node_modules
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
2021-01-21 11:53:22 +01:00
|
|
|
|
2021-02-04 21:17:16 +01:00
|
|
|
- name: Build Jar and launch4j
|
2021-01-21 11:45:05 +01:00
|
|
|
uses: eskatos/gradle-command-action@v1
|
|
|
|
with:
|
|
|
|
build-root-directory: master
|
|
|
|
wrapper-directory: master
|
2021-02-04 21:17:16 +01:00
|
|
|
arguments: :server:windowsPackage --stacktrace
|
2021-01-21 11:45:05 +01:00
|
|
|
wrapper-cache-enabled: true
|
|
|
|
dependencies-cache-enabled: true
|
|
|
|
configuration-cache-enabled: true
|
|
|
|
|
2021-02-13 12:48:57 +01:00
|
|
|
|
2021-01-21 11:45:05 +01:00
|
|
|
- name: Create repo artifacts
|
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
./.github/scripts/create-repo.sh
|
|
|
|
|
2021-02-14 20:19:40 +01:00
|
|
|
- name: Upload Release
|
|
|
|
- uses: xresloader/upload-to-github-release@master
|
2021-02-13 11:09:52 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2021-02-14 20:19:40 +01:00
|
|
|
file: "master/repo/*"
|
|
|
|
tags: true
|
2021-02-14 19:50:50 +01:00
|
|
|
draft: true
|
2021-02-14 20:19:40 +01:00
|
|
|
verbose: true
|
|
|
|
|
|
|
|
# - name: Create Release
|
|
|
|
# id: create_release
|
|
|
|
# uses: actions/create-release@v1
|
|
|
|
# env:
|
|
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# with:
|
|
|
|
# tag_name: ${{ github.ref }}
|
|
|
|
# release_name: Release ${{ github.ref }}
|
|
|
|
# body: |
|
|
|
|
# Release body
|
|
|
|
# draft: false
|
|
|
|
# prerelease: true
|
|
|
|
#
|
|
|
|
# - name: Get the Ref
|
|
|
|
# id: get-ref
|
|
|
|
# uses: ankitvgupta/ref-to-tag-action@master
|
|
|
|
# with:
|
|
|
|
# ref: ${{ github.ref }}
|
|
|
|
# head_ref: ${{ github.head_ref }}
|
|
|
|
#
|
|
|
|
# - name: Get the tag
|
|
|
|
# run: echo "The tag was ${{ steps.get-ref.outputs.tag }}"
|
|
|
|
#
|
|
|
|
# - name: Upload Release
|
|
|
|
# uses: AButler/upload-release-assets@v2.0
|
|
|
|
# with:
|
|
|
|
# files: 'master/repo/*'
|
|
|
|
# repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# release-tag: ${{ steps.get-ref.outputs.tag }}
|