Skip to content

Commit 6d6ca84

Browse files
committed
Fix release workflow so it builds the man page
1 parent cedc305 commit 6d6ca84

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,17 @@ jobs:
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
- name: Fetch tags
21+
run: |
22+
git fetch --prune --tags ||:
1823
- name: Install build dependencies
1924
run: |
2025
sudo apt install -y ronn
2126
- name: Configure
2227
run: |
2328
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
24-
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
2529
./bootstrap.sh
2630
./configure --enable-developer-mode
2731
- name: Generate release-specific changelog
@@ -53,7 +57,6 @@ jobs:
5357
uses: actions/checkout@v4
5458
- name: Configure standalone script
5559
run: |
56-
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
5760
./bootstrap.sh
5861
./configure --with-standalone --bindir=/
5962
make DESTDIR=. install-exec

0 commit comments

Comments
 (0)