Skip to content

Commit bdc80c0

Browse files
author
Michael Cooper
committed
Squashed commit of the following:
commit 5a0ab2f Author: Michael Cooper <[email protected]> Date: Tue Nov 16 10:31:47 2021 -0500 checkout the right repo commit a2786a1 Author: Michael Cooper <[email protected]> Date: Tue Nov 16 10:17:15 2021 -0500 see if we're in the checked out repo commit fd07e1b Author: Michael Cooper <[email protected]> Date: Tue Nov 16 10:14:47 2021 -0500 build in branch for testing commit bc76f93 Author: Michael Cooper <[email protected]> Date: Tue Nov 16 10:12:59 2021 -0500 try to get the relative file locations right commit 77d06b8 Author: Michael Cooper <[email protected]> Date: Tue Nov 16 09:20:24 2021 -0500 specify w3c repos commit 8ecce81 Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:25:25 2021 -0500 Update deploy.yml commit ccd7b4f Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:23:45 2021 -0500 Update deploy.yml commit 592acd4 Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:22:16 2021 -0500 Update deploy.yml commit 129efd9 Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:19:47 2021 -0500 Update deploy.yml commit b998ce1 Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:18:55 2021 -0500 Update deploy.yml commit e4db6db Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:17:07 2021 -0500 Update deploy.yml commit c1e251c Author: Michael Cooper <[email protected]> Date: Mon Nov 15 14:14:48 2021 -0500 (re)create dir to copy into
1 parent 9d40224 commit bdc80c0

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

.github/workflows/deploy.yml

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- deploy
78
paths:
89
- .github/workflows/deploy.yml
910
- README.md
@@ -24,44 +25,43 @@ jobs:
2425
fail-fast: false
2526
matrix:
2627
include:
27-
- repo: accname
28+
- repo: w3c/accname
2829
branch: main
29-
- repo: aria
30+
- repo: w3c/aria
3031
branch: main
31-
- repo: aria
32+
- repo: w3c/aria
3233
branch: stable
33-
- repo: aria-practices
34+
- repo: w3c/aria-practices
3435
branch: main
35-
- repo: core-aam
36+
- repo: w3c/core-aam
3637
branch: main
37-
- repo: core-aam
38+
- repo: w3c/core-aam
3839
branch: stable
39-
- repo: css-aam
40+
- repo: w3c/css-aam
4041
branch: main
41-
- repo: dpub-aam
42+
- repo: w3c/dpub-aam
4243
branch: main
43-
- repo: dpub-aria
44+
- repo: w3c/dpub-aria
4445
branch: main
45-
- repo: graphics-aam
46+
- repo: w3c/graphics-aam
4647
branch: main
47-
- repo: graphics-aria
48+
- repo: w3c/graphics-aria
4849
branch: main
49-
- repo: math-aam
50+
- repo: w3c/math-aam
5051
branch: main
51-
- repo: math-aria
52+
- repo: w3c/math-aria
5253
branch: main
53-
- repo: mathml-aam
54+
- repo: w3c/mathml-aam
5455
branch: main
55-
- repo: svg-aam
56+
- repo: w3c/svg-aam
5657
branch: main
5758

5859
steps:
5960
- uses: actions/checkout@v2
60-
with:
61-
path: common
6261

6362
- uses: actions/checkout@v2
6463
with:
64+
repository: ${{ matrix.repo }}
6565
path: ${{ matrix.repo }}
6666
ref: ${{ matrix.branch }}
6767
token: ${{ secrets.GH_TOKEN }}
@@ -72,15 +72,16 @@ jobs:
7272
7373
- name: Copy files
7474
run: |
75-
cp -R commmon/README.md ${{ matrix.repo }}
76-
cp -R commmon/acknowledgements.html ${{ matrix.repo }}
77-
cp -R commmon/biblio.js ${{ matrix.repo }}
78-
cp -R commmon/terms.html ${{ matrix.repo }}
79-
cp -R commmon/acknowledgements ${{ matrix.repo }}
80-
cp -R commmon/css ${{ matrix.repo }}
81-
cp -R commmon/img ${{ matrix.repo }}
82-
cp -R commmon/script ${{ matrix.repo }}
83-
cp -R commmon/utility ${{ matrix.repo }}
75+
mkdir ${{ matrix.repo }}/common
76+
cp -R README.md ${{ matrix.repo }}/common
77+
cp -R acknowledgements.html ${{ matrix.repo }}/common
78+
cp -R biblio.js ${{ matrix.repo }}/common
79+
cp -R terms.html ${{ matrix.repo }}/common
80+
cp -R acknowledgements ${{ matrix.repo }}/common
81+
cp -R css ${{ matrix.repo }}/common
82+
cp -R img ${{ matrix.repo }}/common
83+
cp -R script ${{ matrix.repo }}/common
84+
cp -R utility ${{ matrix.repo }}/common
8485
8586
- name: Commit back
8687
run: |

0 commit comments

Comments
 (0)