Skip to content

Commit

Permalink
Adjust publish doc pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dogo committed Sep 2, 2024
1 parent 81f61e8 commit a428d37
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup PSPDEV Environment
run: |
URL="https://github.com/pspdev/pspdev/releases/download/v20240609/pspdev-ubuntu-latest-x86_64.tar.gz"
FILE=$(basename $URL)
wget $URL
tar -xzf $FILE
export PATH="$(brew --prefix gnu-sed)/libexec/gnubin:$PATH" # This really is only needed for macOS
export PATH="$(brew --prefix libtool)/libexec/gnubin:$PATH" # This really is only needed for macOS
export PKG_CONFIG_PATH="$(brew --prefix libarchive)/lib/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig" # This really is only needed for macOS
export PSPDEV=$PWD/pspdev
export PATH=$PATH:$PSPDEV/bin
- name: Generate documentation
run: make gendoc

Expand Down

0 comments on commit a428d37

Please sign in to comment.