From 411152df39882a0620a39aa50d2f5cee4256d335 Mon Sep 17 00:00:00 2001 From: gonzalobg <65027571+gonzalobg@users.noreply.github.com> Date: Wed, 20 Mar 2024 08:44:30 +0900 Subject: [PATCH] Setup CI workflow --- .github/workflows/blank.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..7e37071 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,29 @@ +name: CI +on: + workflow_dispatch: {} + pull_request: {} + push: + branches: [main] +jobs: + main: + name: Build, Validate and Deploy + runs-on: ubuntu-20.04 + permissions: + contents: write + steps: + - uses: actions/checkout@v3 + - uses: w3c/spec-prod@v2 + with: + TOOLCHAIN: bikeshed + + # Modify as appropriate + GH_PAGES_BRANCH: gh-pages + + # if your doc isn't in the root folder, + # or Bikeshed otherwise can't find it: + SOURCE: spec.bs + + # output filename defaults to your input + # with .html extension instead, + # but if you want to customize it: + DESTINATION: index.html