Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
uses: actions/checkout@v6
- name: Install dependencies
run: ci/install-dependencies.sh
- name: Install asciidoc
run: sudo apt-get update -q && sudo apt-get install -y asciidoc
- name: Build HTML documentation
run: make -C Documentation html
- name: Stage Pages content
Expand Down
2 changes: 1 addition & 1 deletion ci/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ubuntu-*|i386/ubuntu-*|debian-*)
esac

sudo apt-get -q update
sudo apt-get -q -y install \
sudo apt-get -q -y --fix-missing install \
$LANGUAGES apache2 cvs cvsps git gnupg $SVN \
make libssl-dev libcurl4-openssl-dev libexpat-dev wget sudo default-jre \
tcl tk gettext zlib1g-dev perl-modules liberror-perl libauthen-sasl-perl \
Expand Down
Loading