Fix for publish workflow

This commit is contained in:
Erik C. Thauvin 2023-04-08 11:28:54 -07:00
parent 35ae2b6333
commit 9439b18f68
3 changed files with 7 additions and 2 deletions

View file

@ -3,7 +3,7 @@ name: bld-ci
on: [ push, pull_request, workflow_dispatch ] on: [ push, pull_request, workflow_dispatch ]
jobs: jobs:
build-gradle-project: build-bld-project:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:

View file

@ -6,7 +6,7 @@ on:
types: [released] types: [released]
jobs: jobs:
build-gradle-project: build-bld-project:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View file

@ -72,4 +72,9 @@ public class TemplateRenderersBuild extends Project {
.apiKey(property("testsBadgeApiKey")) .apiKey(property("testsBadgeApiKey"))
.fromProject(this)); .fromProject(this));
} }
@Override
public void precompile() throws Exception {
// TODO remove when fixed in bld
}
} }