Skip to content

Commit ba8471d

Browse files
committed
correction work
1 parent a000400 commit ba8471d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build-on-release.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: Build and Test
1+
name: Build Static Releases
22

33
on:
44
release:
55
types: [ created ]
66

77
jobs:
8-
setup:
9-
name: Setup Environment
8+
build:
9+
name: Build static releases
1010
runs-on: ubuntu-latest
1111
env:
1212
OS: "linux, windows"
@@ -29,6 +29,11 @@ jobs:
2929
sudo apt update -y
3030
sudo apt install -y xcaddy
3131
32+
- name: Install libvips and libvips-dev
33+
run: |
34+
sudo apt-get install -y libvips libvips-dev
35+
36+
3237
- name: Build static releases
3338
run: |
3439
for os in $(echo $OS | tr ',' ' '); do

0 commit comments

Comments
 (0)