Merge pull request #17 from ScriptAutomate/fix-deploy #7
Workflow file for this run
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
# Workflow for building a Sphinx site and deploying artifacts to GitHub Releases | |
name: Build Sphinx docs | |
on: | |
push: {} | |
pull_request: {} | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Default to bash | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- name: Run pre-commit | |
run: | | |
pip install -U pip setuptools wheel | |
pip install -r requirements-dev.txt | |
pre-commit install | |
pre-commit run -a -v --color always | |
- name: Build docs | |
run: | | |
nox -e 'docs-html(download_versions=True, clean=True)' | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: salt-install-guide | |
path: ./docs/_build/html/ | |
if-no-files-found: error | |
retention-days: 1 | |
# Release job | |
deploy: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Display all downloaded archives/artifacts | |
run: | | |
ls -lah | |
echo " | |
Listing salt-install-guide/*..." | |
ls -lah salt-install-guide/* | |
echo " | |
Creating archive of built salt-install-guide..." | |
tar cvfz salt-install-guide.tar.gz salt-install-guide | |
echo " | |
Creating checksums.txt..." | |
sha512sum salt-install-guide.tar.gz salt.repo salt.sources | tee checksums.txt | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
checksums.txt | |
salt.repo | |
salt.sources | |
salt-install-guide.tar.gz |