Skip to content

Commit

Permalink
Merge pull request #7 from uelei/fix-build-master-name-change
Browse files Browse the repository at this point in the history
🚧 build: fix master build after name change
  • Loading branch information
uelei authored Nov 4, 2023
2 parents 964dd82 + b512f4b commit 0fae4d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:

- name: Build Windows
if: matrix.platform == 'windows-latest'
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }}.exe .
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }}.exe ./cmd/brl-rate-get/
- name: Build
if: matrix.platform != 'windows-latest'
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }} .
run: go build -v -o dist/brl-rate-get-${{ matrix.platform }}_${{ needs.version.outputs.current-version }} ./cmd/brl-rate-get/

- name: Upload Artifact Windows
if: matrix.platform == 'windows-latest'
Expand Down

0 comments on commit 0fae4d4

Please sign in to comment.