Skip to content

Commit

Permalink
Merge branch 'main' into patrickhlauke-techniques-step-fail-language-…
Browse files Browse the repository at this point in the history
…tweak
  • Loading branch information
mbgower authored Aug 7, 2024
2 parents 244aa15 + 4f22712 commit 551193b
Show file tree
Hide file tree
Showing 224 changed files with 17,378 additions and 2,901 deletions.
24 changes: 24 additions & 0 deletions .eleventyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
*.*
11ty/
acknowledgements/
conformance-challenges/
guidelines/
lib/
requirements/
script/
wcag20/
# working-examples is directly copied; it should not be processed as templates
working-examples/
xslt/

# These files under understanding don't end up in output in the old build
understanding/*/accessibility-support-documenting.html
understanding/*/identify-changes.html
understanding/*/interruptions-minimum.html
understanding/*/seizures.html

# Ignore templates used for creating new documents
**/*-template.html

# HTML files under img will be passthrough-copied
**/img/*
28 changes: 0 additions & 28 deletions .github/scripts/deploy.sh

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/11ty-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI

# Reference documentation: https://docs.github.com/en/actions/reference

# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags
on:
push:
branches: [main]

jobs:
main:
name: deploy (11ty)
runs-on: ubuntu-20.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Checkout gh-pages
uses: actions/checkout@v4
with:
ref: gh-pages
path: _site
token: ${{ secrets.W3CGRUNTBOT_TOKEN }}
- name: Install Node.js and dependencies
uses: actions/setup-node@v4
with:
cache: npm
node-version-file: '.nvmrc'
- name: Build
env:
WCAG_MODE: editors
run: |
npm i
npm run build
cp guidelines/guidelines.css guidelines/relative-luminance.html _site/guidelines/22
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/guidelines/index.html -o _site/guidelines/22/index.html -f --retry 3
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/requirements/22/index.html -o _site/requirements/22/index.html -f --retry 3
curl https://labs.w3.org/spec-generator/?type=respec"&"url=https://raw.githack.com/$GITHUB_REPOSITORY/main/conformance-challenges/index.html -o _site/conformance-challenges/index.html -f --retry 3
- name: Push
working-directory: _site
run: |
git config user.email 87540780+w3cgruntbot@users.noreply.github.com
git config user.name w3cgruntbot
git add -A .
git commit -m ":robot: Deploy to GitHub Pages: $GITHUB_SHA from branch $GITHUB_REF"
git push origin gh-pages
44 changes: 0 additions & 44 deletions .github/workflows/manual-publish.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,12 @@ pip-log.txt

build.properties

#######
## Node
#######

node_modules/

#############
## Output
#############
Expand All @@ -238,3 +244,4 @@ build.properties
/guidelines/wcag.xml
/guidelines/versions.xml
/guidelines/index-flat.html
/_site/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.*
!*.ts
!*.11tydata.js
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 100,
"trailingComma": "es5"
}
Loading

0 comments on commit 551193b

Please sign in to comment.