Skip to content

Commit

Permalink
fix(actions): bring metadata collection in-line with new format
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Nov 28, 2020
1 parent eb111f4 commit a62380b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,17 @@ jobs:
fi
if [ -r release.config.js ]; then HAS_RCNF=true; else HAS_RCNF=false; fi
echo $NPMR | grep -qe '^build-docs$'
echo $NPMR | grep -qe '\sbuild-docs\s'
if [ $? -eq 0 ]; then HAS_DOCS=true; else HAS_DOCS=false; fi
echo $NPMR | grep -qe '^build-externals$'
echo $NPMR | grep -qe '\sbuild-externals\s'
if [ $? -eq 0 ]; then HAS_EXTS=true; else HAS_EXTS=false; fi
echo $NPMR | grep -qe '^test-integration-node$'
echo $NPMR | grep -qe '\stest-integration-node\s'
if [ $? -eq 0 ]; then HAS_NODE=true; else HAS_NODE=false; fi
echo $NPMR | grep -qe '^test-integration-externals$'
echo $NPMR | grep -qe '\stest-integration-externals\s'
if [ $? -eq 0 ]; then HAS_IEXT=true; else HAS_IEXT=false; fi
echo $NPMR | grep -qe '^test-integration-browser$'
echo $NPMR | grep -qe '\stest-integration-browser\s'
if [ $? -eq 0 ]; then HAS_BWSR=true; else HAS_BWSR=false; fi
echo $NPMR | grep -qe '^test-integration-webpack$'
echo $NPMR | grep -qe '\stest-integration-webpack\s'
if [ $? -eq 0 ]; then HAS_WEBP=true; else HAS_WEBP=false; fi
echo "::set-output name=has-release-config::$HAS_RCNF"
Expand Down

0 comments on commit a62380b

Please sign in to comment.