ci: ensure app dir exists
This commit is contained in:
parent
b122626e97
commit
2062562f6b
|
@ -31,7 +31,9 @@ jobs:
|
||||||
$HOME/go/bin/swag fmt;
|
$HOME/go/bin/swag fmt;
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build .
|
run: |
|
||||||
|
mkdir app;
|
||||||
|
go build .;
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
uses: shimataro/ssh-key-action@v2
|
uses: shimataro/ssh-key-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue