ci: ensure app dir exists

This commit is contained in:
Derrick Hammer 2023-06-28 01:53:22 -04:00
parent b122626e97
commit 2062562f6b
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -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: