Skip to content

Commit 797da77

Browse files
authored
Merge pull request #17 from ivoa-std/change-of-name
Change of name
2 parents 548eaf9 + 066764d commit 797da77

File tree

11 files changed

+175
-145
lines changed

11 files changed

+175
-145
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Check the IVOA document
22

33
env:
4-
doc_name: ObjVisSAP
4+
doc_name: ObjObsSAP
55

66
on:
77
pull_request:
@@ -25,15 +25,15 @@ jobs:
2525
sudo apt install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended xsltproc latexmk cm-super
2626
2727
- name: Build the document
28-
run: make
28+
run: make biblio forcetex
2929

3030
- name: Check the output
3131
run: |
3232
test -f ${{ env.doc_name }}.pdf
3333
test -f ${{ env.doc_name }}.bbl
3434
3535
- name: Keep the PDF artefact
36-
uses: actions/upload-artifact@v1
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: PDF Preview
3939
path: ${{ env.doc_name }}.pdf

.github/workflows/preview.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Update PDF Preview
22

33
env:
4-
doc_name: ObjVisSAP
4+
doc_name: ObjObsSAP
55

66
on:
77
push:
@@ -27,18 +27,18 @@ jobs:
2727
sudo snap install pdftk
2828
2929
- name: Build the document
30-
run: make ${{ env.doc_name }}-draft.pdf
30+
run: make biblio ${{ env.doc_name }}-draft.pdf
3131

3232
- name: Check the output
3333
run: |
3434
test -f ${{ env.doc_name }}-draft.pdf
3535
test -f ${{ env.doc_name }}.bbl
3636
3737
- name: Move the auto-pdf-preview tag
38-
uses: weareyipyip/walking-tag-action@v1
38+
uses: weareyipyip/walking-tag-action@v2
3939
with:
40-
TAG_NAME: auto-pdf-preview
41-
TAG_MESSAGE: |
40+
tag-name: auto-pdf-preview
41+
tag-message: |
4242
Last commit taken into account for the automatically updated PDF preview of this IVOA document.
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
**/*.dvi
66
**/*.log
77
**/*.out
8-
**/ObsLocTAP.synctex.gz
9-
**/ObsLocTAP.ps
10-
**/ObsLocTAP.pdf
11-
**/ObsLocTAP.fls
12-
**/ObsLocTAP.fdb_latexmk
8+
**/ObjObsSAP.synctex.gz
9+
**/ObjObsSAP.ps
10+
**/ObjObsSAP.pdf
11+
**/ObjObsSAP.fls
12+
**/ObjObsSAP.fdb_latexmk
13+
**/ObjObsSAP.toc

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# ivoatex Makefile. The ivoatex/README for the targets available.
22

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

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

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

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

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

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

0 commit comments

Comments
 (0)