Skip to content

Commit

Permalink
Fix initial github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lefessan committed Jan 13, 2024
1 parent f28585b commit fcb48bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev bison flex help2man gettext texlive
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev bison flex help2man gettext texlive texlive-latex-extra texlive-plain-generic
- name: Set git user
run: |
Expand All @@ -38,6 +38,7 @@ jobs:
- name: bootstrap
run: |
cd guide
make pdf
- name: Upload some pdfs
Expand Down
8 changes: 4 additions & 4 deletions guide/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -125,23 +125,23 @@ info-clean:
@rm -rvf info/gnucob*.info


publish: HTML/gnucobpg.html $(CSS)
publish:: HTML/gnucobpg.html $(CSS)
test "$(WWW)"
scp HTML/gnucobpg.html $(WWW)
scp css/gnucobpg.css $(WWW)/css/
scp js/tree.js $(WWW)/js/

publish-css: HTML/gnucobpg.html $(CSS)
publish-css:: HTML/gnucobpg.html $(CSS)
test "$(WWW)"
scp css/gnucobpg.css $(WWW)/css/
scp js/tree.js $(WWW)/js/

publish-css: HTML/gnucobpr.html $(CSS)
publish-css:: HTML/gnucobpr.html $(CSS)
test "$(WWW)"
scp css/gnucobpr.css $(WWW)/css/
scp js/tree.js $(WWW)/js/

publish: HTML/gnucobpr.html $(CSS)
publish:: HTML/gnucobpr.html $(CSS)
test "$(WWW)"
scp HTML/gnucobpr.html $(WWW)
scp css/gnucobpr.css $(WWW)/css/
Expand Down

0 comments on commit fcb48bc

Please sign in to comment.