mirror of
https://github.com/TotalFreedomMC/OpenInv.git
synced 2024-12-22 16:05:03 +00:00
Add reading assistant
This commit is contained in:
parent
eae4021138
commit
1c579564bc
3 changed files with 26 additions and 87 deletions
87
.github/workflows/ci.yml
vendored
87
.github/workflows/ci.yml
vendored
|
@ -1,87 +0,0 @@
|
||||||
name: OpenInv CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
create:
|
|
||||||
types: [tag]
|
|
||||||
pull_request_target:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set Up Java
|
|
||||||
uses: actions/setup-java@v1
|
|
||||||
with:
|
|
||||||
java-version: 1.8
|
|
||||||
|
|
||||||
# Use cache to speed up build
|
|
||||||
- name: Cache Maven Repo
|
|
||||||
uses: actions/cache@v2
|
|
||||||
id: cache
|
|
||||||
with:
|
|
||||||
path: ~/.m2/repository
|
|
||||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
||||||
|
|
||||||
# Install Spigot dependencies.
|
|
||||||
# This script uses Maven to check all required installations and ensure that they are present.
|
|
||||||
- name: Install Spigot Dependencies
|
|
||||||
run: . scripts/install_spigot_dependencies.sh
|
|
||||||
|
|
||||||
- name: Build With Maven
|
|
||||||
run: mvn -e clean package -am -P all
|
|
||||||
|
|
||||||
# Upload artifacts
|
|
||||||
- name: Upload Distributable Jar
|
|
||||||
id: upload-final
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: dist
|
|
||||||
path: ./target/OpenInv.jar
|
|
||||||
- name: Upload API Jar
|
|
||||||
id: upload-api
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: api
|
|
||||||
path: ./api/target/openinvapi*.jar
|
|
||||||
|
|
||||||
release:
|
|
||||||
name: Create Github Release
|
|
||||||
needs: [ build ]
|
|
||||||
if: github.event_name == 'create' && github.event.ref_type == 'tag'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Download Artifacts
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
|
|
||||||
- name: Generate changelog
|
|
||||||
run: . scripts/generate_changelog.sh
|
|
||||||
|
|
||||||
- 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: ${{ env.GENERATED_CHANGELOG }}
|
|
||||||
draft: true
|
|
||||||
prerelease: false
|
|
||||||
|
|
||||||
- name: Upload Release Asset
|
|
||||||
id: upload-release-asset
|
|
||||||
uses: actions/upload-release-asset@v1.0.2
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
|
||||||
asset_path: ./OpenInv.jar
|
|
||||||
asset_name: OpenInv.jar
|
|
||||||
asset_content_type: application/java-archive
|
|
13
.github/workflows/close-issue.yml
vendored
Normal file
13
.github/workflows/close-issue.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name: Close Issue
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: peter-evans/close-issue@v1.0.3
|
||||||
|
with:
|
||||||
|
comment: "Per the notice in the readme, OpenInv is now being maintained at [Jikoo/OpenInv](https://github.com/Jikoo/OpenInv)."
|
13
.github/workflows/close-pr.yml
vendored
Normal file
13
.github/workflows/close-pr.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name: Close Pull Request
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: superbrothers/close-pull-request@v3.1.0
|
||||||
|
with:
|
||||||
|
comment: "Per the notice in the readme, OpenInv is now being maintained at [Jikoo/OpenInv](https://github.com/Jikoo/OpenInv)."
|
Loading…
Reference in a new issue