Skip to content

Commit 3b37fc2

Browse files
committed
yet another attempt at the release workflow
1 parent e6faf99 commit 3b37fc2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: .github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ jobs:
1313
uses: actions/checkout@v3
1414

1515
- name: Set up build tools
16-
run: sudo apt-get install -y build-essential autoconf automake libtool zip
16+
run: sudo apt-get install -y build-essential autoconf automake libtool pkg-config autoconf-archive
17+
18+
- name: Create necessary directories
19+
run: mkdir -p m4 auxdir build-aux/m4
1720

1821
- name: Generate configure script
19-
run: autoreconf -i
22+
run: autoreconf -i -I m4 -I build-aux/m4
2023

21-
- name: Configure the project
24+
- name: Run configure
2225
run: ./configure
2326

2427
- name: Build the project
@@ -30,9 +33,6 @@ jobs:
3033
- name: Create .zip source tarball
3134
run: make dist-zip
3235

33-
- name: List generated files
34-
run: ls -lah
35-
3636
- name: Upload .tar.gz release asset
3737
uses: actions/upload-release-asset@v1
3838
with:

0 commit comments

Comments
 (0)