-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #355 from UBC-DSCI/main
Public site rebuild
- Loading branch information
Showing
2 changed files
with
13 additions
and
15 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 |
---|---|---|
|
@@ -20,22 +20,18 @@ jobs: | |
with: | ||
ref: 'gh-pages' | ||
|
||
- name: Copy contents of dev/ to home folder | ||
- name: Clean the site contents except for dev, pull contents of dev/ to main site | ||
run: | | ||
yes | cp -rf dev ${{ runner.home }} | ||
# Push update website to dev/ and clean out old commits | ||
- name: Update website to contents of dev, remove all old commits and subpages | ||
# delete everything except the dev and .git folders | ||
find . -maxdepth 1 ! -name ".git" ! -name "dev" ! -name "." | xargs rm -rf | ||
# copy the contents of dev into the root | ||
cp -rf dev/* . | ||
# Push updated website, clean out old commits | ||
- name: Update website | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: dev/ | ||
force_orphan: true # this will clean up all previous PR previews / main branch preview | ||
cname: datasciencebook.ca | ||
|
||
- name: copy dev/ website back in | ||
run: | | ||
yes | cp -rf ${{ runner.home }}/dev dev | ||
- name: push the result to gh-pages | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
publish_dir: ./ | ||
force_orphan: true | ||
cname: python.datasciencebook.ca |
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