diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml new file mode 100644 index 0000000..0589731 --- /dev/null +++ b/.github/workflows/auto-publish.yml @@ -0,0 +1,28 @@ +name: Build, and publish spec to GitHub Pages and /TR/ + +on: + pull_request: {} + push: + branches: [main] + paths: + - 'index.bs' + +jobs: + main: + name: Build, Validate and Deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: w3c/spec-prod@v2 + with: + TOOLCHAIN: bikeshed + SOURCE: index.bs + DESTINATION: index.html + GH_PAGES_BRANCH: gh-pages +# W3C_ECHIDNA_TOKEN: ${{ secrets.W3C_TR_TOKEN }} +# W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-immersive-web-wg/2021Sep/0004.html +# W3C_BUILD_OVERRIDE: | +# status: WD + +# not set 'warning' to BUILD_FAIL_ON (not to cause error by bikeshed warning?) + diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 2641498..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build and Deploy -on: - push: - branches: - - main -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. - with: - persist-credentials: false - - - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. - run: make - - name: Prepare Deploy folder - run: mkdir deploy && rsync -av --exclude=.git --exclude=.gitignore --exclude=deploy . deploy/ - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@4.0.0 - with: - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: deploy # The folder the action should deploy. diff --git a/Makefile b/Makefile deleted file mode 100644 index 89fe3aa..0000000 --- a/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -.PHONY: all index.html - -all: index.html - -index.html: index.bs - curl https://api.csswg.org/bikeshed/ -F file=@index.bs -F output=err - curl https://api.csswg.org/bikeshed/ -F file=@index.bs -F force=1 > index.html | tee - -local: index.bs - bikeshed --die-on=everything spec index.bs diff --git a/index.bs b/index.bs index 4957e0c..f850eb1 100644 --- a/index.bs +++ b/index.bs @@ -2,13 +2,13 @@ Shortname: webxr-webgpu-binding Title: WebXR/WebGPU Binding Module - Level 1 Group: immersivewebwg -Status: w3c/ED +Status: ED TR: https://www.w3.org/TR/webxr-webgpu-binding-1/ ED: https://immersive-web.github.io/webxr-webgpu-binding/ Previous Version: Repository: immersive-web/webxr-webgpu-binding Level: 1 -Mailing List Archives: https://lists.w3.org/Archives/Public/public-immersive-web/ +Mailing List Archives: https://lists.w3.org/Archives/Public/public-immersive-web-wg/ Editor: Brandon Jones, Google https://www.google.com, bajones@google.com, w3cid 87824 diff --git a/package.json b/package.json deleted file mode 100644 index 1e94060..0000000 --- a/package.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "webxr-webgpu-binding", - "description": "WebXR/WebGPU Binding Module - Level 1", - "version": "0.0.1", - "scripts": { - "build": "make" - } -} diff --git a/w3c.json b/w3c.json index b6b163a..123b0e8 100644 --- a/w3c.json +++ b/w3c.json @@ -1,5 +1,5 @@ { - "group": [87846] -, "contacts": ["dontcallmedom", "himorin"] -, "repo-type": "cg-report" + "group": 109735 +, "contacts": ["himorin"] +, "repo-type": "rec-track" }