diff options
author | Petr Ilin <hevav@hevav.dev> | 2023-01-23 15:59:43 +0300 |
---|---|---|
committer | Petr Ilin <hevav@hevav.dev> | 2023-01-23 15:59:43 +0300 |
commit | 5493d0efb8cc31fe630a5b02e84dcd0378810b40 (patch) | |
tree | 43a0d96dec5857b89ba2b050c400b10b17eb4c8e | |
parent | d5f320ecfb14416aa86b38b03e417ed972cef276 (diff) | |
download | LimboAuth-5493d0efb8cc31fe630a5b02e84dcd0378810b40.tar.gz LimboAuth-5493d0efb8cc31fe630a5b02e84dcd0378810b40.tar.bz2 LimboAuth-5493d0efb8cc31fe630a5b02e84dcd0378810b40.zip |
Run CI only on master branch
-rw-r--r-- | .github/workflows/build.yml | 8 | ||||
-rw-r--r-- | build.gradle | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f98d62..1e5fd1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,12 @@ name: Java CI with Gradle -on: [ push, pull_request ] +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: build: diff --git a/build.gradle b/build.gradle index 70635ea..97e5a26 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } setGroup("net.elytrium") -setVersion("1.1.6-SNAPSHOT") +setVersion("1.1.6") java { setSourceCompatibility(JavaVersion.VERSION_11) |