.
Some checks failed
Build and Deploy artifact / build (push) Failing after 43s

This commit is contained in:
kento2 2026-08-05 23:17:19 +02:00
parent 930ce3ff46
commit 03c41c7835
3 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,7 @@ jobs:
build:
runs-on: docker
container:
image: "git.lab0x13.site/scrow/bazel-java:0.8"
image: "git.lab0x13.site/scrow/bazel-java:0.9"
steps:
- uses: actions/checkout@v7
- uses: actions/cache@v6
@ -20,7 +20,6 @@ jobs:
CACHE_PASSWORD: ${{ secrets.CACHE_PASSWORD }}
run: |
bazel \
--batch \
--output_user_root=/var/cache/bazel \
build //bukkit:bukkit.publish //core:core.publish //velocity:velocity.publish \
--remote_upload_local_results \

1
.idea/workspace.xml generated
View file

@ -43,6 +43,7 @@
<list default="true" id="6414223f-1761-4683-97f5-9dab59d6c44a" name="Changes" comment=".">
<change beforePath="$PROJECT_DIR$/.forgejo/workflows/publish-artifact.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.forgejo/workflows/publish-artifact.yml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/core/src/main/java/de/kentoj/kencommandapi/api/argument/types/StringArgumentType.java" beforeDir="false" afterPath="$PROJECT_DIR$/core/src/main/java/de/kentoj/kencommandapi/api/argument/types/StringArgumentType.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />

View file

@ -5,6 +5,10 @@ import de.kentoj.kencommandapi.api.suggestion.SuggestionProvider;
public record StringArgumentType<T>(boolean greedy) implements ArgumentType<T, String> {
public StringArgumentType() {
this(false);
}
@Override
public String parseInputUnchecked(String string) {
return string;