Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #53 from BaseMC/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…setup-java-v2

Bump actions/setup-java from v1 to v2
  • Loading branch information
litetex authored Apr 6, 2021
2 parents c93b971 + f4d5dd1 commit 7ae7f9b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Develop CI
name: Check Build

on:
workflow_dispatch:
push:
branches: [ develop ]
paths-ignore:
- '**.md'
pull_request:
branches: [ develop ]
paths-ignore:
- '**.md'

jobs:
test:
Expand All @@ -16,9 +20,10 @@ jobs:
- uses: actions/checkout@v2

- name: Setup - Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11.0.x
distribution: 'adopt'

- name: Setup - Restore Cache
uses: actions/cache@v2
Expand Down
16 changes: 11 additions & 5 deletions .github/workflows/master.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: Master CI
name: Release

on:
workflow_dispatch:
push:
branches: [ master ]

# Don't use a cache here:
# This is the last instance that can detect missing dependecies

jobs:
build_release:
name: Build & Release
Expand All @@ -17,9 +14,18 @@ jobs:
- uses: actions/checkout@v2

- name: Setup - Java
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 11.0.x
distribution: 'adopt'

- name: Setup - Restore Cache
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build - Gradle
run: ./gradlew build
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# AvesFlower [![Build](https://img.shields.io/github/workflow/status/BaseMC/avesflower/Master%20CI)](https://github.com/BaseMC/avesflower/actions?query=workflow%3A%22Master+CI%22) [![Latest Version](https://img.shields.io/github/v/release/BaseMC/avesflower)](https://github.com/BaseMC/avesflower/releases)
# AvesFlower [![Build](https://img.shields.io/github/workflow/status/BaseMC/avesflower/Release)](https://github.com/BaseMC/avesflower/actions?query=workflow%3A%22Release%22) [![Latest Version](https://img.shields.io/github/v/release/BaseMC/avesflower)](https://github.com/BaseMC/avesflower/releases)
Modificated version of [fernflower](https://github.com/JetBrains/intellij-community/tree/master/plugins/java-decompiler/engine) (forked from [here](https://github.com/fesh0r/fernflower)) for the Aves project

### Development [![Build Develop](https://img.shields.io/github/workflow/status/BaseMC/avesflower/Develop%20CI/develop?label=build%20develop)](https://github.com/BaseMC/avesflower/actions?query=workflow%3A%22Develop+CI%22+branch%3Adevelop)
### Development [![Build Develop](https://img.shields.io/github/workflow/status/BaseMC/avesflower/Check%20Build/develop?label=build%20develop)](https://github.com/BaseMC/avesflower/actions?query=workflow%3A%22Check+Build%22+branch%3Adevelop)

### Licensing
* [license](LICENSE) for modifications
* used [licenses](LICENSES)
* Get modificated files:
* [License](LICENSE) for modifications
* Used [licenses](LICENSES)
* How to get modificated files:
```shell
git remote add -f b https://github.com/fesh0r/fernflower.git
git remote update
Expand Down

0 comments on commit 7ae7f9b

Please # to comment.