Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
with:
distribution: temurin
java-version: 17
- uses: sbt/setup-sbt@v1
- name: Make sbt wrapper executable
run: chmod +x ./sbt
- name: Run tests
run: sbt test
run: ./sbt test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ gitbucket-plugin-template
========
Template project for GitBucket plugin

Run `sbt assembly` and copy generated `/target/scala-2.13/gitbucket-helloworld-plugin-assembly-1.0.0.jar` to `~/.gitbucket/plugins/` (If the directory does not exist, create it by hand before copying the jar), or just run `sbt install`.
Run `./sbt assembly` and copy generated `/target/scala-2.13/gitbucket-helloworld-plugin-assembly-1.0.0.jar` to `~/.gitbucket/plugins/` (If the directory does not exist, create it by hand before copying the jar), or just run `./sbt install`.

Then start GitBucket and access to http://localhost:8080/helloworld in your web browser, you will see `Hello World!` response.
Loading