Skip to content

Commit

Permalink
Merge pull request #28 from GiganticMinecraft/sbt-assembly
Browse files Browse the repository at this point in the history
Sbt assembly
  • Loading branch information
outductor authored Jan 4, 2024
2 parents 4d43194 + 3209fcb commit d493457
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-assembled-jar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
submodules: recursive

- name: Build artifact
run: sbt assembly
run: mkdir -p target/build && ./sbt assembly

- name: Release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
submodules: recursive

- name: Build artifact
run: sbt assembly
run: mkdir -p target/build && ./sbt assembly
1 change: 1 addition & 0 deletions prepare-docker.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
call rd /s /q target\build

mkdir target\build
call sbt assembly || goto :onerror

REM https://stackoverflow.com/a/23812179
Expand Down
2 changes: 1 addition & 1 deletion prepare-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build_image() {

rm -r target/build || true

./sbt assembly
mkdir -p target/build && ./sbt assembly

cp -n docker/spigot/eula.txt docker/spigot/serverfiles/eula.txt || true

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.5")

0 comments on commit d493457

Please sign in to comment.