diff options
| author | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 02:01:51 +0300 |
|---|---|---|
| committer | Levent Kaya <levent.kaya@codefirst.io> | 2024-11-27 02:01:51 +0300 |
| commit | 39e6c3c15d83c623770752ac311ff2fefc9ce39f (patch) | |
| tree | 1733655bbfecda905ee601437686131c42c6c1d9 | |
| parent | 176dcb62b2964bb1bf1377add6b3c54ca4dbf468 (diff) | |
[ci]
| -rw-r--r-- | .github/workflows/doxygen.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 3428a9b..88dfc82 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -14,16 +14,14 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - # Step 2: Install Doxygen, Python, and required dependencies - - name: Install Dependencies + # Step 2: Install Doxygen and Python + - name: Install Doxygen and Python run: | sudo apt-get update sudo apt-get install -y doxygen graphviz python3 python3-pip - pip3 install --upgrade pip - pip3 install git+https://github.com/mosra/m.css.git - # Step 3: Download m.css theme - - name: Download m.css + # Step 3: Clone m.css repository + - name: Clone m.css run: | mkdir -p docs/m.css git clone --depth 1 https://github.com/mosra/m.css.git docs/m.css |
