Skip to content

Commit

Permalink
yet another attempt at the release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Oct 2, 2024
1 parent e6faf99 commit 3b37fc2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 3b37fc2

Please sign in to comment.