Skip to content

Commit 9bd5857

Browse files
Update references to use v1.0.0 instead of master and replace latex by LaTeX in readme
1 parent 1722585 commit 9bd5857

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
8-
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@master"
8+
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@v1.0.0"
99
with:
1010
file: test.tex
1111
args: -pdf
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2
17-
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@master"
17+
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@v1.0.0"
1818
with:
1919
file: tests/subdir_test.tex
2020
- run: '(test -f subdir_test.dvi && echo DVI exists) || (echo DVI does not exist && exit 1)'
2121
test-output-directory:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@master"
25+
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@v1.0.0"
2626
with:
2727
file: test.tex
2828
output-directory: tests/output
@@ -31,15 +31,15 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v2
34-
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@master"
34+
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@v1.0.0"
3535
with:
3636
file: test.tex
3737
args: -help
3838
test-full:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v2
42-
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@master"
42+
- uses: ./ # For real world usage this should be replaced by "antaljanosbenjamin/compile-latex@v1.0.0"
4343
with:
4444
file: tests/subdir_test.tex
4545
output-directory: tests/outputpdf

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Compile latex action
2-
This action can be used to compile latex documents with `latexmk`. The action uses an ubuntu based [docker image](https://github.com/antaljanosbenjamin/latex-extra-docker).
1+
# Compile LaTeX action
2+
This action can be used to compile LaTeX documents with `latexmk`. The action uses an ubuntu based [docker image](https://github.com/antaljanosbenjamin/latex-extra-docker).
33

4-
It calls `latexmk` in the working directory on a single tex file.
4+
It calls `latexmk` in the working directory to compile a LaTeX document.
55
## Inputs
66

77
### `file` (required)
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: antaljanosbenjamin/compile-latex@master
26+
- uses: antaljanosbenjamin/compile-latex@v1.0.0
2727
with:
2828
file: test.tex
2929
args: -pdf

0 commit comments

Comments
 (0)