Skip to content

Commit b1f3cdc

Browse files
committed
WIP
1 parent 88954d7 commit b1f3cdc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ jobs:
959959
force_orphan: true
960960

961961
- name: Publish website
962-
if: github.event_name == 'push' && (contains(fromJSON('["master", "develop"]'), github.ref_name) || startsWith(github.ref, 'refs/tags/')) && runner.os == 'Linux'
962+
if: github.event_name == 'push' && (contains(fromJSON('["master", "develop", "GH1039"]'), github.ref_name) || startsWith(github.ref, 'refs/tags/')) && runner.os == 'Linux'
963963
env:
964964
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
965965
run: |
@@ -974,15 +974,15 @@ jobs:
974974
975975
# Copy files: This step will copy the landing page and the documentation to www.mrdocs.com
976976
chmod 755 -R $(pwd)/build/website
977-
scp -o StrictHostKeyChecking=no -r $(pwd)/build/website/* [email protected]:/var/www/mrdox.com/
977+
time scp -o StrictHostKeyChecking=no -r $(pwd)/build/website/* [email protected]:/var/www/mrdox.com/
978978
979979
# Remove previous demos associated with this tag
980980
demo_dir="/var/www/mrdox.com/demos/${{ github.ref_name }}"
981-
ssh -o StrictHostKeyChecking=no [email protected] "rm -rf $demo_dir/boost-url; mkdir -p $demo_dir/boost-url"
981+
time ssh -o StrictHostKeyChecking=no [email protected] "rm -rf $demo_dir/boost-url; mkdir -p $demo_dir/boost-url"
982982
983983
# Copy demos: This step will copy the demos to www.mrdocs.com/demos
984984
chmod 755 -R $(pwd)/demos
985-
scp -o StrictHostKeyChecking=no -r $(pwd)/demos/* [email protected]:$demo_dir/
985+
time scp -o StrictHostKeyChecking=no -r $(pwd)/demos/* [email protected]:$demo_dir/
986986
987987
- name: Create changelog
988988
uses: alandefreitas/cpp-actions/[email protected]

0 commit comments

Comments
 (0)