Skip to content

Commit

Permalink
Fix release workflow so it builds the man page
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Apr 8, 2024
1 parent cedc305 commit 6d6ca84
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Install build dependencies
run: |
sudo apt install -y ronn
- name: Configure
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
./bootstrap.sh
./configure --enable-developer-mode
- name: Generate release-specific changelog
Expand Down Expand Up @@ -53,7 +57,6 @@ jobs:
uses: actions/checkout@v4
- name: Configure standalone script
run: |
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
./bootstrap.sh
./configure --with-standalone --bindir=/
make DESTDIR=. install-exec
Expand Down

0 comments on commit 6d6ca84

Please sign in to comment.