chore: Update release runner to ubuntu-20.04 (#148)

Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
pull/149/head
Mykhailo Kuznietsov 2021-09-28 20:38:23 +03:00 committed by GitHub
parent ce6bcf2d19
commit d217fd6ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -21,9 +21,9 @@ on:
required: false
default: 'false'
versionParent:
description: 'Specify Che Parent version here, if *releaseParent is true'
description: 'Specify Che Parent version here'
required: false
default: ''
default: '7.15.0'
forceRecreateTags:
description: 'If true, tags will be overriden and regenerated. Use with caution.'
required: false
@ -43,7 +43,7 @@ on:
jobs:
build:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:

View File

@ -24,7 +24,8 @@ docker run -i --rm -v "$HOME/.m2:/root/.m2" \
set -
# validate that index.d.ts has kind of valid output
if ! grep "export namespace" index.d.ts; then
echo "Invalid output generated for index.d.ts"
echo "Invalid output generated for index.d.ts, printing its content:"
cat index.d.ts
exit 1
fi