tachiyomi-extensions-inspector/.github/workflows/publish.yml

105 lines
2.7 KiB
YAML
Raw Normal View History

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
- name: Copy CI gradle.properties
run: |
cd master
mkdir -p ~/.gradle
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
2021-01-21 11:53:22 +01:00
- name: Download and process android.jar
if: github.event_name == 'push' && github.repository == 'AriaMoradi/Tachidesk'
run: |
cd master
./scripts/getAndroid.sh
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
- name: Create repo artifacts
2021-01-21 23:07:24 +01:00
if: github.event_name == 'push' && github.repository == 'AriaMoradi/Tachidesk'
2021-01-21 11:45:05 +01:00
run: |
cd master
./.github/scripts/create-repo.sh
2021-02-13 11:02:59 +01:00
- name: Create Release
2021-02-13 11:09:52 +01:00
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
2021-02-13 11:45:38 +01:00
draft: false
2021-02-13 11:09:52 +01:00
prerelease: false
2021-02-13 11:02:59 +01:00
2021-02-13 10:27:01 +01:00
- name: Upload Release
uses: AButler/upload-release-assets@v2.0
with:
2021-02-13 10:51:13 +01:00
files: 'master/repo/*'
2021-02-13 10:27:01 +01:00
repo-token: ${{ secrets.GITHUB_TOKEN }}
2021-02-13 11:31:01 +01:00
# release-tag: ${{ github.ref }}
2021-02-13 10:24:36 +01:00
# - name: Checkout repo branch
# if: github.event_name == 'push' && github.repository == 'AriaMoradi/Tachidesk'
# uses: actions/checkout@v2
# with:
# ref: repo
# path: repo
2021-01-21 11:45:05 +01:00
# - name: Deploy repo
# if: github.event_name == 'push' && github.repository == 'AriaMoradi/Tachidesk'
# run: |
# cd repo
# ../master/.github/scripts/commit-repo.sh