We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38e3f59 commit 0822635Copy full SHA for 0822635
CONTRIBUTING.md .github/CONTRIBUTING.mdCONTRIBUTING.md renamed to .github/CONTRIBUTING.md
PULL_REQUEST_TEMPLATE.md .github/pull_request_template.mdPULL_REQUEST_TEMPLATE.md renamed to .github/pull_request_template.md
Makefile
@@ -2,13 +2,15 @@ SHELL=/bin/bash -o pipefail
2
.PHONY: local remote deploy
3
4
remote: xhr.bs
5
- @ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \
+ @ (HTTP_STATUS=$$(curl https://www.w3.org/publications/spec-generator/ \
6
--output xhr.html \
7
--write-out "%{http_code}" \
8
--header "Accept: text/plain, text/html" \
9
-F die-on=warning \
10
-F md-Text-Macro="COMMIT-SHA LOCAL COPY" \
11
- -F file=@xhr.bs) && \
+ -F file=@xhr.bs \
12
+ -F type=bikeshed-spec \
13
+ -F output=html) && \
14
[[ "$$HTTP_STATUS" -eq "200" ]]) || ( \
15
echo ""; cat xhr.html; echo ""; \
16
rm -f xhr.html; \
0 commit comments