Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove underscore in UG build path #3218

Merged
merged 1 commit into from Jul 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs_nightly.yml
Expand Up @@ -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}"
Expand Down