-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2197 from w3c/monorepo
monorepo: final step
- Loading branch information
Showing
56 changed files
with
47,926 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish accname | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['accname/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: accname/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_ACCNAME }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: WD | ||
shortName: accname-1.2 | ||
ARTIFACT_NAME: 'accname' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: accname | ||
path: accname.zip | ||
|
||
copy-to-accname-gh-pages: | ||
name: Copy to accname repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout accname repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/accname | ||
ref: gh-pages | ||
path: accname | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: accname | ||
path: accname | ||
|
||
- name: Commit changes | ||
working-directory: accname | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update accname" | ||
git push origin gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish core-aam | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['core-aam/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: core-aam/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_CORE_AAM }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: CRD | ||
shortName: core-aam-1.2 | ||
ARTIFACT_NAME: 'core-aam' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: core-aam | ||
path: core-aam.zip | ||
|
||
copy-to-core-aam-gh-pages: | ||
name: Copy to core-aam repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout core-aam repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/core-aam | ||
ref: gh-pages | ||
path: core-aam | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: core-aam | ||
path: core-aam | ||
|
||
- name: Commit changes | ||
working-directory: core-aam | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update core-aam" | ||
git push origin gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish dpub-aria | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['dpub-aria/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: dpub-aria/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_DPUB-AAM }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: CRD | ||
shortName: dpub-aria-1.1 | ||
ARTIFACT_NAME: 'dpub-aria' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dpub-aria | ||
path: dpub-aria.zip | ||
|
||
copy-to-dpub-aria-gh-pages: | ||
name: Copy to dpub-aria repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout dpub-aria repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/dpub-aria | ||
ref: gh-pages | ||
path: dpub-aria | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dpub-aria | ||
path: dpub-aria | ||
|
||
- name: Commit changes | ||
working-directory: dpub-aria | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update dpub-aria" | ||
git push origin gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish dpub-aria | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['dpub-aria/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: dpub-aria/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_DPUB-ARIA }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: CRD | ||
shortName: dpub-aria-1.1 | ||
ARTIFACT_NAME: 'dpub-aria' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dpub-aria | ||
path: dpub-aria.zip | ||
|
||
copy-to-dpub-aria-gh-pages: | ||
name: Copy to dpub-aria repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout dpub-aria repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/dpub-aria | ||
ref: gh-pages | ||
path: dpub-aria | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dpub-aria | ||
path: dpub-aria | ||
|
||
- name: Commit changes | ||
working-directory: dpub-aria | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update dpub-aria" | ||
git push origin gh-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish graphics-aam | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['graphics-aam/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: graphics-aam/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_GRAPHICS-AAM }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: CRD | ||
shortName: graphics-aam-1.1 | ||
ARTIFACT_NAME: 'graphics-aam' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: graphics-aam | ||
path: graphics-aam.zip | ||
|
||
copy-to-graphics-aam-gh-pages: | ||
name: Copy to graphics-aam repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout graphics-aam repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/graphics-aam | ||
ref: gh-pages | ||
path: graphics-aam | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: graphics-aam | ||
path: graphics-aam | ||
|
||
- name: Commit changes | ||
working-directory: graphics-aam | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update graphics-aam" | ||
git push origin gh-pages |
64 changes: 64 additions & 0 deletions
64
.github/workflows/build-copy-and-publish-graphics-aria.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build, Copy, and Publish graphics-aria | ||
on: | ||
push: | ||
branches: [main] | ||
paths: ['graphics-aria/**', 'common/**'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
main: | ||
name: Build Respec | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: w3c/spec-prod@v2 | ||
with: | ||
SOURCE: graphics-aria/index.html | ||
TOOLCHAIN: respec | ||
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_GRAPHICS-ARIA }} | ||
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html | ||
GH_PAGES_BRANCH: gh-pages | ||
VALIDATE_WEBIDL: false | ||
VALIDATE_MARKUP: false | ||
BUILD_FAIL_ON: nothing | ||
W3C_BUILD_OVERRIDE: | | ||
specStatus: CRD | ||
shortName: graphics-aria-1.1 | ||
ARTIFACT_NAME: 'graphics-aria' | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: graphics-aria | ||
path: graphics-aria.zip | ||
|
||
copy-to-graphics-aria-gh-pages: | ||
name: Copy to graphics-aria repo | ||
runs-on: ubuntu-20.04 | ||
needs: main | ||
steps: | ||
- name: Checkout graphics-aria repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: w3c/graphics-aria | ||
ref: gh-pages | ||
path: graphics-aria | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: graphics-aria | ||
path: graphics-aria | ||
|
||
- name: Commit changes | ||
working-directory: graphics-aria | ||
env: | ||
token: ${{ secrets.ARIA_SPECS_EDITORS_DRAFTS }} | ||
run: | | ||
ls -R | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
git status | ||
git add . | ||
git commit -m "Update graphics-aria" | ||
git push origin gh-pages |
Oops, something went wrong.