Skip to content

Commit

Permalink
add missing go get
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed May 5, 2023
1 parent 9eeef22 commit b1dcc12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
go-version: 1.19

- name: Build
run: sudo go build -v ./... -o vib
run: |
go get ./...
go build -v ./... -o vib
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
go-version: 1.19

- name: Build
run: sudo go build -v ./... -o vib
run: |
go get ./...
go build -v ./... -o vib
- name: Upload a Release Asset
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit b1dcc12

Please sign in to comment.