docgen from Jira #46
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
name: docgen from Jira | |
on: workflow_dispatch | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # full history for metadata | |
submodules: false | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Python install | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install "lander<2.0.0" | |
- name: condaenv | |
run: | | |
conda init bash | |
conda create --name docsteady-env docsteady -c lsst-dm -c conda-forge | |
shell: bash | |
- name: docugen | |
env: | |
JIRA_USER: ${{ secrets.JIRA_USER }} | |
JIRA_PASSWORD: ${{ secrets.JIRA_PASSWORD }} | |
run: | | |
source ${CONDA}/bin/activate docsteady-env | |
docsteady --namespace PSE generate-tpr LVV-P105 PSTR-001.tex | |
shell: bash | |
- name: Create commit | |
run: | | |
git config user.name $GITHUB_ACTOR | |
git config user.email $GITHUB_ACTOR@users.noreply.github.com | |
git add attachments jira_imgs | |
git commit -am "Update from JIRA." | |
git push | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: sqrereadonly | |
password: ${{ secrets.DOCKERHUB_SQREREADONLY_TOKEN }} | |
- name: TeX build | |
run: | | |
docker run --rm -v `pwd`:/workspace -w /workspace lsstsqre/lsst-texmf:latest sh -c 'make' | |
- name: Landing page upload | |
env: | |
LTD_PASSWORD: ${{ secrets.LTD_PASSWORD }} | |
LTD_USERNAME: ${{ secrets.LTD_USERNAME }} | |
run: | | |
lander --upload --pdf PSTR-001.pdf --lsstdoc PSTR-001.tex --ltd-product pstr-001 --extra-download PSTR-001-plan.pdf |