We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a000400 commit ba8471dCopy full SHA for ba8471d
.github/workflows/build-on-release.yml
@@ -1,12 +1,12 @@
1
-name: Build and Test
+name: Build Static Releases
2
3
on:
4
release:
5
types: [ created ]
6
7
jobs:
8
- setup:
9
- name: Setup Environment
+ build:
+ name: Build static releases
10
runs-on: ubuntu-latest
11
env:
12
OS: "linux, windows"
@@ -29,6 +29,11 @@ jobs:
29
sudo apt update -y
30
sudo apt install -y xcaddy
31
32
+ - name: Install libvips and libvips-dev
33
+ run: |
34
+ sudo apt-get install -y libvips libvips-dev
35
+
36
37
- name: Build static releases
38
run: |
39
for os in $(echo $OS | tr ',' ' '); do
0 commit comments