Skip to content

Commit 8cf8a47

Browse files
committed
Trying again?
1 parent d8a7cf5 commit 8cf8a47

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,16 @@ jobs:
3636
sed -i "s|branch = clean-wire-server-docs|branch = ${CURRENT_BRANCH}|g" .gitmodules
3737
3838
cat .gitmodules
39-
make sanitize-pr
4039
make build
4140
41+
- name: Clone wire-server and `make sanitize-pr`
42+
# if this fails, you need to run it on your PR and commit the changes it makes.
43+
run: |
44+
CURRENT_REPO_URL="https://github.com/${GITHUB_REPOSITORY}.git"
45+
BRANCH_NAME=${GITHUB_REF##*/}
46+
47+
git clone --branch develop "$CURRENT_REPO_URL" wire-server -b "$BRANCH_NAME"
48+
cd wire-server
49+
make sanitize-pr
50+
4251
# tasks to update the submodule reference in wire-docs repo are yet to be added

0 commit comments

Comments
 (0)