Merge pull request #539 from OP-TED/feature/change-airflow-docker-build #521
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: TED-SWS documentation | |
on: | |
push: | |
branches: | |
- main | |
env: | |
SITE_DIR: 'site' | |
jobs: | |
build_site: | |
name: "Build site with Antora" | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: "Generate site using antora site action" | |
uses: kameshsampath/antora-site-action@master | |
with: | |
antora_playbook: ./docs/antora-playbook.yml | |
# - name: "List folder" | |
# run: | | |
# ls -ltr $GITHUB_WORKSPACE/build/site | |
- name: "Upload generated site" | |
uses: actions/[email protected] | |
with: | |
name: site | |
path: "${{ github.workspace }}/docs/build/${{ env.SITE_DIR }}" | |
deploy_site: | |
runs-on: [ubuntu-latest] | |
needs: [build_site] | |
name: "Deploy GitHub Pages" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
steps: | |
- name: Setup Node.js for use with actions | |
uses: actions/[email protected] | |
with: | |
version: 12.x | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download generated site | |
uses: actions/download-artifact@v1 | |
with: | |
name: site | |
path: "${{ github.workspace }}/${{ env.SITE_DIR }}" | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
# ACCESS_TOKEN: # optional | |
GITHUB_TOKEN: "${{ github.token}}" | |
FOLDER: "${{ env.SITE_DIR }}" | |
BRANCH: 'gh-pages' | |
COMMIT_MESSAGE: "[CI] Publish Documentation for ${{ github.sha }}" |