Skip to content

Commit 7714a5b

Browse files
author
squarebot[bot]
committed
Initial commit
0 parents  commit 7714a5b

File tree

11 files changed

+839
-0
lines changed

11 files changed

+839
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: CI
2+
3+
"on": [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v5
11+
with:
12+
fetch-depth: 0 # full history for metadata
13+
submodules: true
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.13"
19+
20+
- name: Python install
21+
run: |
22+
python -m pip install --upgrade pip
23+
python -m pip install "lander<2.0.0" setuptools
24+
25+
- name: Login to Docker Hub
26+
uses: docker/login-action@v1
27+
with:
28+
username: sqrereadonly
29+
password: ${{ secrets.DOCKERHUB_SQREREADONLY_TOKEN }}
30+
31+
- name: TeX build
32+
run: |
33+
docker run --rm -v `pwd`:/workspace -w /workspace lsstsqre/lsst-texmf:latest sh -c 'make'
34+
35+
- name: Landing page upload
36+
if: ${{ github.event_name == 'push' }}
37+
env:
38+
LTD_PASSWORD: ${{ secrets.LTD_PASSWORD }}
39+
LTD_USERNAME: ${{ secrets.LTD_USERNAME }}
40+
run: |
41+
lander --upload --pdf SITCOMTN-173.pdf --lsstdoc SITCOMTN-173.tex --ltd-product sitcomtn-173

.gitignore

Lines changed: 187 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
## Products (published by CI)
2+
SITCOMTN-173.pdf
3+
4+
# meta.tex is generated by the Makefile
5+
meta.tex
6+
authors.tex
7+
acronyms.tex
8+
9+
one.*
10+
## Core latex/pdflatex auxiliary files:
11+
*.aux
12+
*.lof
13+
*.log
14+
*.lot
15+
*.fls
16+
*.out
17+
*.toc
18+
*.fmt
19+
*.fot
20+
*.cb
21+
*.cb2
22+
*.xdv
23+
24+
25+
## Intermediate documents:
26+
*.dvi
27+
*-converted-to.*
28+
29+
## Bibliography auxiliary files (bibtex/biblatex/biber):
30+
*.bbl
31+
*.bcf
32+
*.blg
33+
*-blx.aux
34+
*-blx.bib
35+
*.brf
36+
*.run.xml
37+
38+
## Build tool auxiliary files:
39+
*.fdb_latexmk
40+
*.synctex
41+
*.synctex.gz
42+
*.synctex.gz(busy)
43+
*.pdfsync
44+
45+
## Auxiliary and intermediate files from other packages:
46+
# algorithms
47+
*.alg
48+
*.loa
49+
50+
# achemso
51+
acs-*.bib
52+
53+
# amsthm
54+
*.thm
55+
56+
# beamer
57+
*.nav
58+
*.snm
59+
*.vrb
60+
61+
# cprotect
62+
*.cpt
63+
64+
# fixme
65+
*.lox
66+
67+
#(r)(e)ledmac/(r)(e)ledpar
68+
*.end
69+
*.?end
70+
*.[1-9]
71+
*.[1-9][0-9]
72+
*.[1-9][0-9][0-9]
73+
*.[1-9]R
74+
*.[1-9][0-9]R
75+
*.[1-9][0-9][0-9]R
76+
*.eledsec[1-9]
77+
*.eledsec[1-9]R
78+
*.eledsec[1-9][0-9]
79+
*.eledsec[1-9][0-9]R
80+
*.eledsec[1-9][0-9][0-9]
81+
*.eledsec[1-9][0-9][0-9]R
82+
83+
# glossaries
84+
*.acn
85+
*.acr
86+
*.glg
87+
*.glo
88+
*.gls
89+
*.glsdefs
90+
91+
# gnuplottex
92+
*-gnuplottex-*
93+
94+
# hyperref
95+
*.brf
96+
97+
# knitr
98+
*-concordance.tex
99+
# TODO Comment the next line if you want to keep your tikz graphics files
100+
*.tikz
101+
*-tikzDictionary
102+
103+
# listings
104+
*.lol
105+
106+
# makeidx
107+
*.idx
108+
*.ilg
109+
*.ind
110+
*.ist
111+
112+
# minitoc
113+
*.maf
114+
*.mlf
115+
*.mlt
116+
*.mtc
117+
*.mtc[0-9]
118+
*.mtc[1-9][0-9]
119+
120+
# minted
121+
_minted*
122+
*.pyg
123+
124+
# morewrites
125+
*.mw
126+
127+
# mylatexformat
128+
*.fmt
129+
130+
# nomencl
131+
*.nlo
132+
133+
# sagetex
134+
*.sagetex.sage
135+
*.sagetex.py
136+
*.sagetex.scmd
137+
138+
# sympy
139+
*.sout
140+
*.sympy
141+
sympy-plots-for-*.tex/
142+
143+
# pdfcomment
144+
*.upa
145+
*.upb
146+
147+
# pythontex
148+
*.pytxcode
149+
pythontex-files-*/
150+
151+
# thmtools
152+
*.loe
153+
154+
# TikZ & PGF
155+
*.dpth
156+
*.md5
157+
*.auxlock
158+
159+
# todonotes
160+
*.tdo
161+
162+
# xindy
163+
*.xdy
164+
165+
# xypic precompiled matrices
166+
*.xyc
167+
168+
# endfloat
169+
*.ttt
170+
*.fff
171+
172+
# Latexian
173+
TSWLatexianTemp*
174+
175+
## Editors:
176+
# WinEdt
177+
*.bak
178+
*.sav
179+
180+
# Texpad
181+
.texpadtmp
182+
183+
# Kile
184+
*.backup
185+
186+
# KBibTeX
187+
*~[0-9]*

COPYRIGHT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Copyright 2025 Association of Universities for Research in Astronomy, Inc. (AURA)

0 commit comments

Comments
 (0)