You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the WHATWG chatroom, @jgraham suggested folding the deploy.sh script into the GitHub Action for triggering deploys, so contributors don't have to worry about running make deploy.
I don't have enough insight into what the deploy script does to know if it's useful to run locally or if it does things that are awkward to express in GH Actions.
The text was updated successfully, but these errors were encountered:
Contributors generally do need to know about it because currently the only way to figure out how to build WHATWG specs is to either a) notice there's a Makefile and read it, or b) read https://github.com/whatwg/meta/blob/main/CONTRIBUTING.md where make deploy is (unintentionally) the most prominent thing under "Building".
In any case the deploy target seems to be a two line shell script that first downloads the latest version of another shell script and then runs it. It seems like it would be totally possible for the few people who want to use this just to have that two line script somewhere on their path, and in CI you can just put the two lines directly in the GH actions workflow.
But of course that only makes sense if you first remove the dependency on make for the common use case of local builds, and then also want to stop using it entirely. To me that would be an improvement, because as a simple frontend the way it's used for WHATWG specs I consider make to offer negative value. But as long as one can make a build only using the standard toolchain (i.e. bikeshed spec) I care much less about how you organise the code for advanced use cases.
In the WHATWG chatroom, @jgraham suggested folding the deploy.sh script into the GitHub Action for triggering deploys, so contributors don't have to worry about running
make deploy
.I don't have enough insight into what the deploy script does to know if it's useful to run locally or if it does things that are awkward to express in GH Actions.
The text was updated successfully, but these errors were encountered: