Skip to content

Commit

Permalink
fix artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed May 5, 2023
1 parent b1dcc12 commit a20cbb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,5 @@ jobs:
- name: Build
run: |
go get ./...
go build -v ./... -o vib
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: vib
path: vib
go build -v ./...
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build
run: |
go get ./...
go build -v ./... -o vib
go build -o vib
- name: Upload a Release Asset
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit a20cbb7

Please sign in to comment.