From 5b578e698649dc72ff648d4516c3f6a03532c653 Mon Sep 17 00:00:00 2001 From: Jan Skrasek Date: Thu, 29 Jul 2021 23:27:13 +0200 Subject: [PATCH] disable verify since the remote server returns buggy data --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8defffe..0761967 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -130,6 +130,9 @@ jobs: name: Verify needs: build runs-on: ubuntu-latest + # verification fails due to: + # "value failed for JSON property pluginXmlId due to missing (therefore NULL) value for creator parameter pluginXmlId which is a non-nullable type" + if: 'false' steps: # Setup Java 11 environment for the next steps @@ -184,7 +187,8 @@ jobs: releaseDraft: name: Release Draft if: github.event_name != 'pull_request' - needs: [build, verify] + # re-add 'verify' as a needs step once verify works again + needs: [build] runs-on: ubuntu-latest steps: