Skip to content

Commit

Permalink
fixed automation
Browse files Browse the repository at this point in the history
  • Loading branch information
ebauman committed Feb 21, 2023
1 parent b21b234 commit 84d992a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Install deps
run: |
go get .
go get ./...
- name: Run tests
run: go test ./...
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ do
for arch in $(echo $INPUT_GOARCH | tr ',' '\n')
do
echo "Building for ${os}/${arch}"
GOOS=$os GOARCH=$arch go build ./cmd/golicense -o dist/golicense-$os-$arch
GOOS=$os GOARCH=$arch go build -o dist/golicense-$os-$arch ./cmd/golicense
done
done

0 comments on commit 84d992a

Please sign in to comment.