From 3b37fc2cd3198bca25c71d2316f3023e41920e7b Mon Sep 17 00:00:00 2001 From: Ken Sedgwick Date: Wed, 2 Oct 2024 13:43:58 -0700 Subject: [PATCH] yet another attempt at the release workflow --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 408a97bf6..0732f7eb6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,15 @@ jobs: uses: actions/checkout@v3 - name: Set up build tools - run: sudo apt-get install -y build-essential autoconf automake libtool zip + run: sudo apt-get install -y build-essential autoconf automake libtool pkg-config autoconf-archive + + - name: Create necessary directories + run: mkdir -p m4 auxdir build-aux/m4 - name: Generate configure script - run: autoreconf -i + run: autoreconf -i -I m4 -I build-aux/m4 - - name: Configure the project + - name: Run configure run: ./configure - name: Build the project @@ -30,9 +33,6 @@ jobs: - name: Create .zip source tarball run: make dist-zip - - name: List generated files - run: ls -lah - - name: Upload .tar.gz release asset uses: actions/upload-release-asset@v1 with: