Archive builds on Github.
parent
e046101305
commit
8b815d4aac
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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/*
|
||||
|
|
|
|||
|
|
@ -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/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue