Skip to content

Commit e9895f2

Browse files
committed
Renaming directory
1 parent 19cdadf commit e9895f2

File tree

1,105 files changed

+9
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,105 files changed

+9
-12
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: peaceiris/actions-gh-pages@v3
2626
with:
2727
personal_token: ${{ secrets.SELENIUM_CI_TOKEN }}
28-
publish_dir: ./site_source_files/public
28+
publish_dir: ./website_and_docs/public
2929
publish_branch: publish
3030
user_name: 'Selenium CI Bot'
3131
user_email: '[email protected]'

.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,4 @@ jobs:
1919
- name: Build
2020
run: chmod +x build-site.sh && ./build-site.sh
2121
env:
22-
SELENIUM_CI_TOKEN: ${{secrets.SELENIUM_CI_TOKEN}}
23-
- name: Build website
24-
run: cd site_source_files && hugo
22+
SELENIUM_CI_TOKEN: ${{secrets.SELENIUM_CI_TOKEN}}

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "website_hugo_files/themes/docsy"]
2-
path = website_hugo_files/themes/docsy
1+
[submodule "website_and_docs/themes/docsy"]
2+
path = website_and_docs/themes/docsy
33
url = https://github.com/google/docsy.git

README.md

+2-2

build-site.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ else
1212
fi
1313

1414
echo -e "\033[0;32mDeleting Hugo previously generated directories...\033[0m"
15-
rm -rf website_hugo_files/public
15+
rm -rf website_and_docs/public
1616

1717
echo -e "\033[0;32mGit init for Docsy...\033[0m"
1818
git submodule update -f --init --recursive
1919

2020
echo -e "\033[0;32mSwitching to Docsy theme directory...\033[0m"
21-
cd website_hugo_files && npm install
21+
cd website_and_docs && npm install
2222

2323
echo -e "\033[0;32mGenerating Hugo site for website...\033[0m"
2424
hugo --minify ${USE_BASE_URL_SITE}

netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build]
2-
publish = "website_hugo_files/public"
2+
publish = "website_and_docs/public"
33
command = "chmod +x build-site.sh && ./build-site.sh"
44

55
[context.production.environment]
File renamed without changes.

0 commit comments

Comments
 (0)