Skip to content

dpub-aam ED

dpub-aam ED #6

Workflow file for this run

name: dpub-aam ED
on:
push:
branches:
- 'main'
paths:
- 'common/**'
- 'dpub-aam/**'
workflow_dispatch:
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Dispatch to dpub-aam repo
run: |
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.ARIA_EDITOR_DRAFTS}}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/w3c/dpub-aam/actions/workflows/build-from-monorepo.yaml/dispatches \
-d '{"ref":"gh-pages"}'
update-dpub-aam:
runs-on: ubuntu-latest
steps:
- name: Checkout monorepo
uses: actions/checkout@v4
with:
ref: main
path: aria
sparse-checkout: |
dpub-aam
common
- name: Copy common
run: |
mkdir aria/dpub-aam/common
cp -r aria/common/** aria/dpub-aam/common/
sed -i 's|\.\./common|common|g' aria/dpub-aam/index.html
- uses: w3c/spec-prod@v2
with:
TOOLCHAIN: respec
SOURCE: aria/dpub-aam/index.html
DESTINATION: aria/dpub-aam/index.html
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_DPUB_AAM }}
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html
W3C_BUILD_OVERRIDE: |
specStatus: CRD
ARTIFACT_NAME: dpub-aam
- name: Checkout dpub-aam repo
uses: actions/checkout@v4
with:
repository: w3c/dpub-aam
ref: gh-pages
path: dpub-aam
token: ${{ secrets.ARIA_EDITOR_DRAFTS }}
- uses: actions/download-artifact@v4
with:
name: dpub-aam
- name: Copy files
run: |
cp -r aria.gh/aria/dpub-aam/** dpub-aam/
- name: Push new files to child repo
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "ED update"
git push origin gh-pages
working-directory: dpub-aam