aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDundar Goc <gocdundar@gmail.com>2022-05-24 12:21:17 +0200
committerDundar Goc <gocdundar@gmail.com>2022-05-24 12:21:17 +0200
commite9f8a478fcc424c05d42ecf8acd753f2a023b134 (patch)
tree88cd03fc05f65b5b06547ef6b9db61bb98587a97
parent307c5c63e17735aa493a43da6d514d00034e9b71 (diff)
downloadrneovim-e9f8a478fcc424c05d42ecf8acd753f2a023b134.tar.gz
rneovim-e9f8a478fcc424c05d42ecf8acd753f2a023b134.tar.bz2
rneovim-e9f8a478fcc424c05d42ecf8acd753f2a023b134.zip
ci(api-docs): upgrade to ubuntu 22 and remove conda dependency
Ubuntu 22 has doxygen version 1.9.1 available in apt, which means we don't need to use conda anymore. This will somewhat simplify the workflow.
-rw-r--r--.github/workflows/api-docs.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml
index 167d799c27..caafc69031 100644
--- a/.github/workflows/api-docs.yml
+++ b/.github/workflows/api-docs.yml
@@ -21,7 +21,7 @@ on:
jobs:
regen-api-docs:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
@@ -35,9 +35,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
- sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y python3 luajit
- conda install -c conda-forge doxygen=1.9.2 msgpack-python
- echo "$CONDA/bin" >> $GITHUB_PATH
+ sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen python3 python3-msgpack luajit
- name: Setup git config
run: |