Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
Feuermagier committed Jul 13, 2024
1 parent 430b527 commit 3bd8443
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: autograder-cmd
path: |
autograder-cmd/target/autograder-cmd.jar
path: autograder-cmd/target/autograder-cmd.jar
if-no-files-found: error

# Release only when pushing to a tag
Expand All @@ -59,5 +58,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
body: 'Minor Release (mostly for the automatic download of the jar file)'
files: |
autograder-cmd/target/autograder-cmd.jar
files: autograder-cmd/target/autograder-cmd.jar
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public List<Problem> checkFile(
unreducedProblems = result
.problems()
.stream()
.filter(problem -> checkConfiguration.problemsToReport().contains(problem.getType()))
.filter(problem -> checkConfiguration.problemsToReport().contains(problem.getProblemType()))
.toList();
}

Expand Down

0 comments on commit 3bd8443

Please sign in to comment.