Merge pull request #3218 from paulbalandan/docs-nightly

Remove underscore in UG build path
This commit is contained in:
MGatner 2020-07-04 14:31:08 -04:00 committed by GitHub
commit e11ff0dd14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,13 +29,13 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: HTML Documentation
path: user_guide_src/_build/html/
path: user_guide_src/build/html/
# Commit changes to the gh-pages branch
- name: Commit documentation changes
run: |
git clone https://github.com/codeigniter4/CodeIgniter4.git --branch gh-pages --single-branch gh-pages
cp -r user_guide_src/_build/html/* gh-pages/
cp -r user_guide_src/build/html/* gh-pages/
cd gh-pages
git config --local user.email "action@github.com"
git config --local user.name "${GITHUB_ACTOR}"