Address review comments

This commit is contained in:
Sam McCall 2020-02-08 23:59:09 +01:00
parent 014e72068e
commit 6014f36a03
3 changed files with 10 additions and 2 deletions

5
.github/actions/pick/build.sh vendored Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash -ex
# Rather than checking in node_modules, check in a standalone dist/index.js.
# Requires ncc: npm i -g @zeit/ncc
npm install
ncc build -m index.js

File diff suppressed because one or more lines are too long

View File

@ -45,6 +45,9 @@ jobs:
Built from llvm/llvm-project@${{ steps.pick.outputs.sha }}. Built from llvm/llvm-project@${{ steps.pick.outputs.sha }}.
prerelease: true prerelease: true
# It would be nice to use draft releases... # It would be nice to use draft releases, to hide them from users.
# But drafts don't fire events to trigger the autobuild workflow.
# Instead, that workflow marks the release as draft until it's built.
# As a result, the empty release will be briefly visible to users.
draft: false draft: false