Skip to content

Commit 580243c

Browse files
committed
GA fix
1 parent 336cb9c commit 580243c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,15 @@ jobs:
2222
env:
2323
TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
2424
run: git config --global url."https://error2215:${TOKEN}@github.com/core-coin/go-core".insteadOf "https://github.com/core-coin/go-core"
25-
- name: Build
26-
shell: bash
25+
- name: Build Mac and Linux
26+
if: matrix.os != 'windows-latest'
2727
run: |
2828
go build -o bin/address-generator main.go
29+
- name: Build Windows
30+
if: matrix.os == 'windows-latest'
31+
shell: bash
32+
run: |
33+
go build -o bin/address-generator.exe main.go
2934
- name: Upload
3035
uses: actions/upload-artifact@v2
3136
with:

0 commit comments

Comments
 (0)