Skip to content

Commit 10d47bf

Browse files
authored
Update starter-workflow.yml
1 parent edeebb9 commit 10d47bf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

starter-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
with:
2323
distribution: 'microsoft'
2424
java-version: 11
25-
# do your build steps. This example uses sbt
26-
- name: Compile with sbt
27-
run: sbt compile
25+
# do your build steps. This example uses sbt to create a .jar file, which will go into the target/scala-2.13 folder
26+
- name: Publish locally with sbt
27+
run: sbt publishLocal
2828
# now run SpotBugs and upload the results to Code Scanning
2929
- name: Run SpotBugs with FindSecBugs
3030
uses: advanced-security/spotbugs-findsecbugs-action@v1
3131
with:
3232
# set these appropriately for your project - the defaults are shown here for context
33-
# spotbugs_target: 'target/' # cannot have globs
33+
spotbugs_target: 'target/scala-2.13' # cannot have globs
3434
# spotbugs_filename_glob: '*.jar'
3535
# upload_sarif: 'true'
3636
# no_cache: 'false'

0 commit comments

Comments
 (0)