mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-16 21:38:23 +00:00
Add 'scripts/github/update-gh-pages.sh' for updating gh-pages branch. This new script intended for github actions integration and builds the html documentation from the currently checked-out commit and updates the corresponding version subfolder in the gh-pages branch. The version is taken from GITHUB_REF environment variable and defaults to 'master' if the env var is empty. For testing purposes or manual updates the subfolder can also be given directly as a command line argument. Add 'scripts/test-infra/build-gh-pages.sh' for verifying that site (gh-pages) builds successfully. This is intended for integration with kubernetes test-infra. Finally, add Github workflow for updating gh-pages. This job is run on master and release branches plus all tags starting with letter 'v'.
28 lines
689 B
YAML
28 lines
689 B
YAML
name: gh-pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
tags:
|
|
- v*
|
|
jobs:
|
|
build:
|
|
name: Update gh-pages
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Check out repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Fetch gh-pages branch
|
|
run: git fetch --no-tags --prune --depth=1 origin refs/heads/gh-pages:refs/heads/gh-pages
|
|
|
|
- name: Build site
|
|
run: |
|
|
git config user.name "Github Actions"
|
|
git config user.email "no-reply@github.com"
|
|
./scripts/github/update-gh-pages.sh
|
|
|
|
- name: Deploy site
|
|
run: git push -f https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} gh-pages
|