Skip to content

Update CHANGELOG.md #13

Update CHANGELOG.md

Update CHANGELOG.md #13

Workflow file for this run

name: Build Autokey pages
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
sphinx-build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/[email protected]
- name: install git
run: |
sudo apt-get install git -y
- name: clone and install autokey
run: |
git clone https://github.com/autokey/autokey
cd autokey
pip install .
- name: install sphinx
run: pip install sphinx recommonmark sphinx-rtd-theme sphinx-epytext enum-tools[sphinx]
- name: build sphinx site
run: |
mkdir docs
sphinx-build -a -E -b html ./ docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: docs
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: sphinx-build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1