From 10db9870685a9b6b43c702a54fa836cdbbfd249a Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 4 Jan 2022 10:55:14 -0800 Subject: [PATCH] sparse checkout of nwchem/contrib/mkdocs [ci skip] --- .github/workflows/website_update.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website_update.yml b/.github/workflows/website_update.yml index d367ee21f0..edd30358f6 100644 --- a/.github/workflows/website_update.yml +++ b/.github/workflows/website_update.yml @@ -15,9 +15,20 @@ jobs: steps: - name: Checkout nwchem code - uses: actions/checkout@v2 - with: - fetch-depth: 1 + shell: bash + run: | + cd $GITHUB_WORKSPACE + pwd + ls -lart + cd .. + ls -lart + git clone --depth 1 --filter=blob:none --sparse \ + https://github.com/nwchemgit/nwchem nwchem + cd nwchem + git sparse-checkout set contrib/mkdocs +# uses: actions/checkout@v2 +# with: +# fetch-depth: 1 - name: Set up Python 3 uses: actions/setup-python@v2