Skip to content

Commit fcb48bc

Browse files
committed
Fix initial github workflow
1 parent f28585b commit fcb48bc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install packages
3030
run: |
3131
sudo apt-get update
32-
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev bison flex help2man gettext texlive
32+
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev bison flex help2man gettext texlive texlive-latex-extra texlive-plain-generic
3333
3434
- name: Set git user
3535
run: |
@@ -38,6 +38,7 @@ jobs:
3838
3939
- name: bootstrap
4040
run: |
41+
cd guide
4142
make pdf
4243
4344
- name: Upload some pdfs

guide/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,23 +125,23 @@ info-clean:
125125
@rm -rvf info/gnucob*.info
126126

127127

128-
publish: HTML/gnucobpg.html $(CSS)
128+
publish:: HTML/gnucobpg.html $(CSS)
129129
test "$(WWW)"
130130
scp HTML/gnucobpg.html $(WWW)
131131
scp css/gnucobpg.css $(WWW)/css/
132132
scp js/tree.js $(WWW)/js/
133133

134-
publish-css: HTML/gnucobpg.html $(CSS)
134+
publish-css:: HTML/gnucobpg.html $(CSS)
135135
test "$(WWW)"
136136
scp css/gnucobpg.css $(WWW)/css/
137137
scp js/tree.js $(WWW)/js/
138138

139-
publish-css: HTML/gnucobpr.html $(CSS)
139+
publish-css:: HTML/gnucobpr.html $(CSS)
140140
test "$(WWW)"
141141
scp css/gnucobpr.css $(WWW)/css/
142142
scp js/tree.js $(WWW)/js/
143143

144-
publish: HTML/gnucobpr.html $(CSS)
144+
publish:: HTML/gnucobpr.html $(CSS)
145145
test "$(WWW)"
146146
scp HTML/gnucobpr.html $(WWW)
147147
scp css/gnucobpr.css $(WWW)/css/

0 commit comments

Comments
 (0)