docs: add changelog for v2023.12 specification revision #1127
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
#/ | |
# @license MIT | |
# | |
# Copyright (c) 2022 Python Data APIs Consortium. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# | |
# The above copyright notice and this permission notice shall be included in all | |
# copies or substantial portions of the Software. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
# SOFTWARE. | |
#/ | |
# Workflow name: | |
name: gh_pages | |
# Workflow triggers: | |
on: | |
push: | |
branches: | |
- main | |
# Workflow jobs: | |
jobs: | |
# Define a job for publishing to the gh-pages branch... | |
publish: | |
# Define a display name: | |
name: 'Publish' | |
# Define the type of virtual host machine: | |
runs-on: ubuntu-latest | |
# Avoid running this workflow for forks and allow skipping CI: | |
if: "github.repository == 'data-apis/array-api' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')" | |
# Define a sequence of job steps... | |
steps: | |
# Checkout the repository: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v2 | |
with: | |
# Specify whether to remove untracked files before checking out the repository: | |
clean: false | |
# Limit clone depth to the most recent commit: | |
fetch-depth: 1 | |
# Specify whether to download Git-LFS files: | |
lfs: false | |
# GitHub token: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
timeout-minutes: 10 | |
# Install Python: | |
- name: 'Install Python' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10.9' | |
architecture: 'x64' | |
# Install dependencies: | |
- name: 'Install dependencies' | |
run: | | |
pip install -r doc-requirements.txt | |
# Generate the documentation: | |
- name: 'Build documentation' | |
run: | | |
# Turn warnings into errors and ensure .doctrees is not deployed: | |
export SPHINXOPTS="-b html -WT --keep-going -d doctrees" | |
make spec | |
# Configure Git: | |
- name: 'Configure Git' | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "array-api-bot" | |
timeout-minutes: 5 | |
# Checkout the gh-pages branch: | |
- name: 'Checkout gh-pages' | |
run: | | |
git fetch --all | |
git checkout gh-pages | |
timeout-minutes: 5 | |
- name: 'Copy build to root' | |
run: | | |
cp -R ./_site/* . | |
cp ./_site/.gitignore . | |
timeout-minutes: 10 | |
# Commit changes to: | |
- name: 'Commit changes' | |
run: | | |
git add . && git commit -m "Deploy: ${{ github.sha }}" | |
continue-on-error: true | |
timeout-minutes: 10 | |
# Push changes: | |
- name: 'Push changes' | |
if: success() | |
run: | | |
git push origin gh-pages | |
timeout-minutes: 10 |