Skip to content

Commit

Permalink
build: workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Misat11 committed Dec 22, 2024
1 parent b0c7166 commit 496aafe
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ jobs:
- name: Upload the final artifact
uses: actions/upload-artifact@v4
with:
path: plugin/*/build/libs/BedWars*[!s].jar
path: |
plugin/*/build/libs/BedWars*[!s].jar
protocol/build/libs/BedWars*[!s].jar
!plugin/common/**/*
2 changes: 2 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
add-job-summary-as-pr-comment: on-failure
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Copyright (C) 2024 ScreamingSandals
*
* This file is part of Screaming BedWars.
*
* Screaming BedWars is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Screaming BedWars is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Screaming BedWars. If not, see <https://www.gnu.org/licenses/>.
*/

package org.screamingsandals.bedwars.api.game;

import org.jetbrains.annotations.NotNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Copyright (C) 2024 ScreamingSandals
*
* This file is part of Screaming BedWars.
*
* Screaming BedWars is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Screaming BedWars is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Screaming BedWars. If not, see <https://www.gnu.org/licenses/>.
*/

package org.screamingsandals.bedwars.game;

import lombok.Data;
Expand Down
8 changes: 7 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ pluginManagement {
maven {
url = uri("https://repo.screamingsandals.org/public/")
}

maven {
// TODO: remove repository when (if) uploaded to gradle plugin portal
url = uri("https://maven.neoforged.net/releases")
content {
includeGroup("net.neoforged.licenser")
}
}
}
}

Expand Down

0 comments on commit 496aafe

Please sign in to comment.