Archive builds on Github.

This commit is contained in:
Dave Page 2023-03-23 16:51:18 +00:00
parent e046101305
commit 8b815d4aac
4 changed files with 24 additions and 0 deletions

View File

@ -34,3 +34,9 @@ jobs:
- name: Check the ePub build
run: make docs-epub
- name: Archive ePub
uses: actions/upload-artifact@v3
with:
name: pgadmin4-epub-build-output
path: docs/en_US/_build/epub/pgAdmin4.epub

View File

@ -34,3 +34,9 @@ jobs:
- name: Check the PDF build
run: make docs-pdf
- name: Archive PDF
uses: actions/upload-artifact@v3
with:
name: pgadmin4-pdf-build-output
path: docs/en_US/_build/latex/pgadmin4.pdf

View File

@ -34,3 +34,9 @@ jobs:
- name: Check the Python wheel build
run: make pip
- name: Archive Python wheel
uses: actions/upload-artifact@v3
with:
name: pgadmin4-python-build-output
path: dist/*

View File

@ -34,3 +34,9 @@ jobs:
- name: Check the tarball build
run: make src
- name: Archive source tarball
uses: actions/upload-artifact@v3
with:
name: pgadmin4-tarball-build-output
path: dist/*