Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change of name #17

Merged
merged 17 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Check the IVOA document

env:
doc_name: ObjVisSAP
doc_name: ObjObsSAP

on:
pull_request:
Expand All @@ -25,15 +25,15 @@ jobs:
sudo apt install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended xsltproc latexmk cm-super

- name: Build the document
run: make
run: make biblio forcetex

- name: Check the output
run: |
test -f ${{ env.doc_name }}.pdf
test -f ${{ env.doc_name }}.bbl

- name: Keep the PDF artefact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: PDF Preview
path: ${{ env.doc_name }}.pdf
10 changes: 5 additions & 5 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Update PDF Preview

env:
doc_name: ObjVisSAP
doc_name: ObjObsSAP

on:
push:
Expand All @@ -27,18 +27,18 @@ jobs:
sudo snap install pdftk

- name: Build the document
run: make ${{ env.doc_name }}-draft.pdf
run: make biblio ${{ env.doc_name }}-draft.pdf

- name: Check the output
run: |
test -f ${{ env.doc_name }}-draft.pdf
test -f ${{ env.doc_name }}.bbl

- name: Move the auto-pdf-preview tag
uses: weareyipyip/walking-tag-action@v1
uses: weareyipyip/walking-tag-action@v2
with:
TAG_NAME: auto-pdf-preview
TAG_MESSAGE: |
tag-name: auto-pdf-preview
tag-message: |
Last commit taken into account for the automatically updated PDF preview of this IVOA document.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
**/*.dvi
**/*.log
**/*.out
**/ObsLocTAP.synctex.gz
**/ObsLocTAP.ps
**/ObsLocTAP.pdf
**/ObsLocTAP.fls
**/ObsLocTAP.fdb_latexmk
**/ObjObsSAP.synctex.gz
**/ObjObsSAP.ps
**/ObjObsSAP.pdf
**/ObjObsSAP.fls
**/ObjObsSAP.fdb_latexmk
**/ObjObsSAP.toc
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# ivoatex Makefile. The ivoatex/README for the targets available.

# short name of your document (edit $DOCNAME.tex; would be like RegTAP)
DOCNAME = ObjVisSAP
DOCNAME = ObjObsSAP

# count up; you probably do not want to bother with versions <1.0
DOCVERSION = 1.0

# Publication date, ISO format; update manually for "releases"
DOCDATE = 2020-09-30
DOCDATE = 2024-11-18

# What is it you're writing: NOTE, WD, PR, REC, PEN, or EN
DOCTYPE = WD

# An e-mail address of the person doing the submission to the document
# repository (can be empty until a make upload is being made)
AUTHOR_EMAIL=[email protected]
AUTHOR_EMAIL=[email protected]

# Source files for the TeX document (but the main file must always
# be called $(DOCNAME).tex
Expand Down
Loading