Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Downloads: add info on MacPorts #1443

Downloads: add info on MacPorts

Downloads: add info on MacPorts #1443

Workflow file for this run

name: πŸ“– Build HTML create artifact for review
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checking out the code πŸ›’
with:
fetch-depth: 1
- name: Set up Python 3.7 🐍
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies πŸ‘¨β€πŸ‘©β€πŸ‘¦
run: |
python -m pip install --upgrade pip
pip install -r REQUIREMENTS.txt
- name: Build sphinx website πŸ—
run: |
make html
- name: Upload build artifact πŸ“¦
uses: actions/upload-artifact@v3
with:
name: HTML build
path: output