We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336cb9c commit 580243cCopy full SHA for 580243c
.github/workflows/build.yml
@@ -22,10 +22,15 @@ jobs:
22
env:
23
TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
24
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
+ - name: Build Mac and Linux
+ if: matrix.os != 'windows-latest'
27
run: |
28
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
34
- name: Upload
35
uses: actions/upload-artifact@v2
36
with:
0 commit comments