File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ jobs:
13
13
uses : actions/checkout@v3
14
14
15
15
- 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
17
20
18
21
- name : Generate configure script
19
- run : autoreconf -i
22
+ run : autoreconf -i -I m4 -I build-aux/m4
20
23
21
- - name : Configure the project
24
+ - name : Run configure
22
25
run : ./configure
23
26
24
27
- name : Build the project
30
33
- name : Create .zip source tarball
31
34
run : make dist-zip
32
35
33
- - name : List generated files
34
- run : ls -lah
35
-
36
36
- name : Upload .tar.gz release asset
37
37
uses : actions/upload-release-asset@v1
38
38
with :
You can’t perform that action at this time.
0 commit comments