-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a221bd2
commit 8b1010e
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,19 +16,18 @@ jobs: | |
node-version: 18.16.1 | ||
- name: Copy asf yaml | ||
run: | | ||
cp .asf.yaml build/ | ||
cp .asf.yaml website-v2/build/ | ||
- name: Copy htaccess | ||
run: | | ||
cp .htaccess build/ | ||
cp .htaccess website-v2/build/ | ||
- name: Build Docs | ||
run: | | ||
mkdir build/docs | ||
cd website-v2 | ||
npm install | ||
npm run build | ||
- name: Copy Python docs | ||
run: | | ||
mkdir -p ./website-v2/build/python | ||
mkdir -p ./website-v2/build/docs/docs/python | ||
cp -r docs-python/* ./website-v2/build/docs/docs/python | ||
- name: Deploy | ||
uses: peaceiris/[email protected] | ||
|