Deploy Documents #1089
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
name: "Deploy Documents" | |
on: | |
schedule: | |
- cron: "0 16 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: [self-hosted, linux, x64] | |
container: | |
image: tizendotnet/tizenfx-build-worker:2.4 | |
options: --ulimit nofile=10240:10240 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: TizenAPI/TizenFX-Docs | |
- name: Checkout TizenFX sources | |
run: | | |
./build.sh clone | |
- name: Cache DocFX output | |
id: cache-site | |
uses: actions/cache@v2 | |
with: | |
path: _site | |
key: docfx-gh-pages-site-${{ hashFiles('repos/commits') }} | |
- name: Build Documents | |
if: steps.cache-site.outputs.cache-hit != 'true' | |
run: | | |
./build.sh restore | |
./build.sh build | |
./build.sh index | |
- name: Archive Artifacts | |
run: | | |
tar cfz site.tar.gz _site/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: documents | |
path: site.tar.gz | |
deploy: | |
needs: [build] | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: documents | |
- name: Extract Artifacts | |
run: | | |
tar xfz site.tar.gz | |
- name: Deploy GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_site | |
publish_branch: gh-pages | |
user_name: 'TizenAPI-Bot' | |
user_email: 'tizenapi@samsung.com' | |
full_commit_message: 'Update documents' |