Skip to content

Commit

Permalink
Added loadUsers and unloadUsers methods.
Browse files Browse the repository at this point in the history
Added automatic release system with Github actions.
Fixed [UserYAMLParser](src/main/java/it/fulminazzo/simplyperms/users/UserYAMLParser) for correctly loading users.
  • Loading branch information
Fulminazzo committed Mar 2, 2024
1 parent cddc07f commit 23bdb19
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
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 }}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'it.fulminazzo'
version = '1.0'
version = '1.1'

repositories {
mavenCentral()
Expand Down

0 comments on commit 23bdb19

Please sign in to comment.