Skip to content

Commit

Permalink
workflows: use ./v instead of v
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Nov 29, 2020
1 parent 9367dcd commit b1bff3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binary_artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Compile
env:
CC: ${{ matrix.compiler }}
run: make && v -o v -prod cmd/v
run: make && ./v -o v -prod cmd/v
- name: Create artifact
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Compile
env:
CC: ${{ matrix.compiler }}
run: make && v -o v -prod cmd/v
run: make && ./v -o v -prod cmd/v
- name: Create artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit b1bff3f

Please sign in to comment.