-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
loadUsers
and unloadUsers
methods.
Added automatic release system with Github actions. Fixed [UserYAMLParser](src/main/java/it/fulminazzo/simplyperms/users/UserYAMLParser) for correctly loading users.
- Loading branch information
1 parent
cddc07f
commit 23bdb19
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Name of the action | ||
name: Automatic Release | ||
|
||
# Event to run on | ||
on: | ||
# Will run on every push in the "main" branch | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
# Jobs that will execute | ||
jobs: | ||
release: | ||
name: Setup Environment, Build JAR and Release Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Automatic Release | ||
uses: Fulminazzo/java-automatic-release@v1 | ||
with: | ||
java-version: 8 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
REPOSITORY_NAME: ${{ github.event.repository.name }} | ||
# Message specified in the commit | ||
COMMIT_MESSAGE: ${{ github.event.head_commit.message }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ plugins { | |
} | ||
|
||
group = 'it.fulminazzo' | ||
version = '1.0' | ||
version = '1.1' | ||
|
||
repositories { | ||
mavenCentral() | ||
|