Skip to content

Update workflow

Update workflow #38

Workflow file for this run

on:
push:
branches:
- master
- v1.11_RC
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
doc_build_job:
runs-on: ubuntu-latest
# This project MUST be given permission to use the image blow. at
# Package settings-> Manage action access of the project hosting the
# package
# Your project MUST contain empty .nojekyll file. Github Pages will
# discard everything starting with '_' i.e. the stylefiles.
container: 'ghcr.io/thesystemdevelopmentkit/thesdktestimage:latest'
name: Build documentation
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Documentation builder action
run: cd doc && make html && cd .. && rm -rf ./docs && mv doc/build/html ./docs/ && touch ./docs/.nojekyll && touch ./docs/.gitignore
- name: GIT commit and push documentation
env:
CI_COMMIT_MESSAGE: Continuous Integration documentation update
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global --add safe.directory /__w/inverter/inverter
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "${GITHUB_ACTOR}@noreply.github.com"
git add docs \
&& git commit -m "${{ env.CI_COMMIT_MESSAGE }}" \
&& git push \
|| echo "Nothing to update"
pages_deploy:
needs: doc_build_job
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4