Skip to content

Commit 80f6b86

Browse files
committed
Fix themes
1 parent f939c2e commit 80f6b86

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/prepare-assets.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ jobs:
1616
uses: actions/checkout@v4
1717
with:
1818
repository: 'WordPress/wporg-parent-2021'
19-
path: 'wp-content/themes/wporg-parent-2021'
19+
path: 'temp/wporg-parent-2021'
2020

2121
- name: Clone wporg-developer-2023 theme sourcecode.
2222
uses: actions/checkout@v4
2323
with:
2424
repository: 'WordPress/wporg-developer'
25-
path: 'wp-content/themes/wporg-developer-2023'
25+
path: 'temp/wporg-developer-2023'
26+
27+
- name: Copy themes.
28+
run: |
29+
mv -r temp/wporg-parent-2021/source/wp-content/themes/wporg-parent-2021 wp-content/themes/wporg-parent-2021
30+
mv -r temp/wporg-developer-2023/source/wp-content/themes/wporg-developer-2023 wp-content/themes/wporg-developer-2023
31+
rm -rf temp
2632
2733
- name: Clone GatherPress sourcecode.
2834
uses: actions/checkout@v4

blueprint.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@
5353
{
5454
"step": "wp-cli",
5555
"command": "wp parser create '/wordpress/wp-content/plugins/gatherpress' --user=1"
56-
}
56+
},
57+
{
58+
"step": "wp-cli",
59+
"command": "wp theme activate wporg-developer-2023"
60+
}
5761
]
5862
}
5963

0 commit comments

Comments
 (0)