Skip to content

Commit 1664ffc

Browse files
committed
fix: use BUILD for make, related to #1194
1 parent c0b3a5e commit 1664ffc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: make versions
2424

2525
- name: Build Cabin
26-
run: make RELEASE=1 -j4
26+
run: make BUILD=release -j4
2727

2828
- name: Install Cabin
2929
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY .git .
1818
COPY Makefile .
1919
COPY src ./src/
2020

21-
RUN make RELEASE=1 install
21+
RUN make BUILD=release install
2222

2323

2424
FROM $base

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ Once you have all the necessary requirements in place, you can build Cabin by th
8181
```bash
8282
git clone https://github.com/cabinpkg/cabin.git
8383
cd cabin
84-
make RELEASE=1 -j$(nproc) install
84+
make BUILD=release -j$(nproc) install
8585
```

0 commit comments

Comments
 (0)