ci(lint): mkdir bin before building ameba
This commit is contained in:
parent
e78b17aa8c
commit
ec1eb3cc2d
|
|
@ -276,7 +276,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build ameba binary
|
- name: Build ameba binary
|
||||||
if: matrix.type == 'crystal'
|
if: matrix.type == 'crystal'
|
||||||
run: crystal build lib/ameba/bin/ameba.cr -o bin/ameba
|
run: |
|
||||||
|
mkdir -p bin
|
||||||
|
crystal build lib/ameba/bin/ameba.cr -o bin/ameba
|
||||||
|
|
||||||
# V (Vlang) Setup (no check-latest — master drift breaks fmt parity)
|
# V (Vlang) Setup (no check-latest — master drift breaks fmt parity)
|
||||||
- name: Install V
|
- name: Install V
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue