Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ runs:
shell: bash
run: |
echo "::group::Running go mod vendor"
go mod vendor
if [[ -f go.work ]]; then
go work vendor
else
go mod vendor
fi
echo "::endgroup::"

- name: Create a deps tarball
Expand Down