Fix release github action
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
This commit is contained in:
parent
11702839e1
commit
ca4ceb1af8
1 changed files with 7 additions and 1 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
@ -12,7 +12,13 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Build project
|
||||
- name: Install fuse
|
||||
run: sudo apt-get install libfuse-dev gcc
|
||||
- name: Install Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.15.x
|
||||
- name: Compile project
|
||||
run: make compile
|
||||
- name: Upload Release
|
||||
uses: softprops/action-gh-release@v0.1.5
|
||||
|
|
Loading…
Reference in a new issue