We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c8e72a commit 0115653Copy full SHA for 0115653
.github/workflows/release.yml
@@ -13,17 +13,24 @@ jobs:
13
uses: actions/checkout@v3
14
15
- name: Set up build tools
16
- run: sudo apt-get install -y build-essential autoconf automake libtool pkg-config autoconf-archive
+ run: sudo apt-get install -y \
17
+ build-essential \
18
+ autoconf \
19
+ autoconf-archive \
20
+ automake \
21
+ curl \
22
+ git \
23
+ libev-dev \
24
+ libtool \
25
+ pkg-config \
26
+ sqlite
27
28
- name: Generate configure script
29
run: autoreconf -fi
30
31
- name: Run configure
32
run: ./configure
33
- - name: Build the project
- run: make
-
34
- name: Create .tar.gz source tarball
35
run: make dist
36
0 commit comments