Fix workflow job name #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Documentation" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
publish-documentation: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
#compiler_c: [clang] | |
#compiler_cxx: [clang++] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y texinfo | |
sudo apt install -y autotools-dev autoconf build-essential | |
- name: Publish docs | |
#env: | |
# CC: ${{ matrix.compiler_c }} | |
# CXX: ${{ matrix.compiler_cxx }} | |
run: | | |
cd ${{ github.workspace }} | |
autoreconf -vi | |
./scripts/publish-docs.sh |