Skip to content

Commit

Permalink
disable verify since the remote server returns buggy data
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Jul 29, 2021
1 parent cffe57f commit 5b578e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:

Expand Down

0 comments on commit 5b578e6

Please sign in to comment.