Skip to content

Commit 074113a

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents cbb2760 + 6305782 commit 074113a

File tree

3 files changed

+63
-3
lines changed

3 files changed

+63
-3
lines changed

.github/workflows/build.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the workflow will run
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the master branch
8+
push:
9+
branches: [ master ]
10+
pull_request:
11+
branches: [ master ]
12+
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v2
27+
# Runs a single command using the runners shell
28+
- name: Cache Maven packages
29+
uses: actions/cache@v2
30+
with:
31+
path: ~/.m2
32+
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
33+
restore-keys: ${{ runner.os }}-m2
34+
- name: Maven Build
35+
run: mvn package -Dmdep.skip
36+
- name: Upload a Build Artifact
37+
uses: actions/upload-artifact@v2.2.4
38+
with:
39+
name: AdiAuth
40+
path: target/AdiAuth*.jar

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
name: Release artifact
44

55
# Controls when the workflow will run
6-
on: release
6+
on:
7+
release:
8+
types: [published, edited]
9+
710

811
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
912
jobs:
@@ -16,12 +19,17 @@ jobs:
1619
steps:
1720
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
1821
- uses: actions/checkout@v2
19-
2022
# Runs a single command using the runners shell
23+
- name: Cache Maven packages
24+
uses: actions/cache@v2
25+
with:
26+
path: ~/.m2
27+
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
28+
restore-keys: ${{ runner.os }}-m2
2129
- name: Maven Build
2230
run: mvn package -Dmdep.skip
2331
- name: Upload to release
24-
uses: JasonEtco/upload-to-release@master
32+
uses: ad1tya2/upload-to-release@master
2533
with:
2634
args: target/AdiAuth*.jar
2735
env:

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# AdiAuth
2+
<br>
3+
<h2>A <b>free</b> hybrid auth plugin for bungeecord</h2>
4+
<br><br>
5+
It automatically logs in premium players, only cracked players need to login manually
6+
<br><br>
7+
It is very simple to use, Just put the plugin in your bungeecord server, configure the mysql database and then put it in your backend servers as well
8+
<br><br>
9+
It also has a lot of configurable options in the config.yml in bungeecord
10+
There is no config for the backend servers, everything can be configured directly in the bungeecord server reducing a lot of hassle for all server owners :smile:
11+
12+
<h3>More features will be added soon!</h3>

0 commit comments

Comments
 (0)