Skip to content

Commit

Permalink
fix go build line in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Worm <tony@hofstadter.io>
  • Loading branch information
verdverm committed Aug 2, 2021
1 parent fe85a37 commit 2d43410
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/default.cue
Expand Up @@ -21,7 +21,7 @@ ghacue.#Workflow & {
run: "go mod download"
},{
name: "Build CLI"
run: "go build ./cmd/hof -o hof"
run: "go build -o hof ./cmd/hof"
},{
name: "Run tests"
run: "./hof test test.cue"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Download mods
run: go mod download
- name: Build CLI
run: go build ./cmd/hof -o hof
run: go build -o hof ./cmd/hof
- name: Run tests
run: ./hof test test.cue
services: {}

0 comments on commit 2d43410

Please sign in to comment.