Skip to content

updated changelog

updated changelog #4

Workflow file for this run

name: Deploy help
on:
# Runs on every push to a tag not containing a /
push:
tags:
- "*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy-help:
name: Deploy help
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Pages
uses: actions/[email protected]
- name: Build html help pages
run: |
sudo apt-get install -y yelp-tools
mkdir help/dist-html
yelp-build html -o help/dist-html help/C
- name: Upload artifact
uses: actions/[email protected]
with:
path: help/dist-html
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]